我需要一些帮助,也许有人面临类似的任务。我想使用 SharePoint 2010 Web 服务查找状态为“发生错误”的所有工作流。我想知道这个任务可能吗?谢谢。
问问题
852 次
1 回答
0
使用 CAML,您可以使用 Web 服务进行查询。
使用方法 GetListItems 和 CAML 查询,WorkflowStatus = 3(发生错误)。
public XmlNode _nodes;
string _ListID = "";
string _ViewID = "";
XmlDocumento _xmlDoc = new System.Xml.XmlDocument();
XmlElement _query = _xmlDoc.CreateElement("Query");
XmlElement _queryOptions = _xmlDoc.CreateElement("QueryOptions");
XmlElement _viewFields = _xmlDoc.CreateElement("ViewFields");
_query.InnerXML = @"
<Where>
<Eq>
<FieldRef Name='WorkflowNameColumn' />
<Value Type='WorkflowStatus'>3</Value>
</Eq>
</Where>";
_queryOptions.InnerXml = "<QueryOptions> <IncludeMandatoryColumns>FALSE</IncludeMandatoryColumns></QueryOptions>";
_viewFields.InnerXml = "";
// SharepointListWS is the name i use in Web References
SharepointListsWS.Lists _lst = new SharepointListsWS.Lists();
_nodes = _lst.GetListItems(_listID, _ViewID, _query, _viewFields, "300", _queryOptions, null);
foreach (XmlNode node in _nodes) {
if (node.Name.ToLower() == "rs:data") {
for (int i = 0; i < node.ChildNodes.Count; i++) {
if (node.ChildNodes[i].Name.ToLower() == "z:row") {
// you can debug here
XmlNode AllNodes = node.ChildNodes[i];
// Find at Attributes
for (int a = 0;a < AllNodes.Attributes.Count; a++) {
string field = AllNodes.Attributes[a].Value.Trim();
string name = AllNodes.Attributes[a].Name;
string colName = XmlConvert.DecodeName(name).ToLower().Replace("ows_", "");
}
}
}
}
}
状态列表可以在这里找到。
于 2013-09-03T11:09:54.207 回答