使用OOB SharePoint 2010 Web服务,我需要使用其URL更新文档的元数据。
网址结构如下所示: [HTTP://web/managedPath/siteCollection/library/folder1/folder2/..../doc.docx]
更新将从第三方应用程序完成,并且不包含任何SharePoint DLL。
使用SharePoint .Net应用程序,我可以使用[spweb.getlistitem(path)]来处理文档。 但是,你如何通过网络服务做同样的事情呢?
答案 0 :(得分:1)
您可以在以下位置使用列表网络服务:
的http:///_vti_bin/Lists.asmx
此处的文档:
http://msdn.microsoft.com/en-us/library/lists.lists.getlistitems(v=office.12).aspx
如何基于CAML查询获取ListItem的集合(这使用Visual Studio生成的代理对象,您使用其他技术,然后需要构建soap请求对象等):
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();
listService.Credentials= System.Net.CredentialCache.DefaultCredentials;
XmlDocument xmlDoc = new System.Xml.XmlDocument();
XmlNode ndQuery = xmlDoc.CreateNode(XmlNodeType.Element,"Query","");
XmlNode ndViewFields =
xmlDoc.CreateNode(XmlNodeType.Element,"ViewFields","");
XmlNode ndQueryOptions =
xmlDoc.CreateNode(XmlNodeType.Element,"QueryOptions","");
ndQueryOptions.InnerXml =
"<IncludeMandatoryColumns>FALSE</IncludeMandatoryColumns>" +
"<DateInUtc>TRUE</DateInUtc>";
ndViewFields.InnerXml = "<FieldRef Name='Field1' />
<FieldRef Name='Field2'/>";
ndQuery.InnerXml = "<Where><And><Gt><FieldRef Name='Field1'/>" +
"<Value Type='Number'>5000</Value></Gt><Gt><FieldRef Name='Field2'/>" +
"<Value Type=
'DateTime'>2003-07-03T00:00:00</Value></Gt></And></Where>";
try
{
XmlNode ndListItems =
listService.GetListItems("List_Name", null, ndQuery,
ndViewFields, null, ndQueryOptions, null);
MessageBox.Show(ndListItems.OuterXml);
}
catch (System.Web.Services.Protocols.SoapException ex)
{
MessageBox.Show("Message:\n" + ex.Message + "\nDetail:\n" +
ex.Detail.InnerText +
"\nStackTrace:\n" + ex.StackTrace);
}