我正在从没有安装 SharePoint 的客户端计算机上开发 MS Office 2010 Excel 插件。我从远程 SharePoint 服务器导入了 Lists Web 服务引用。我开发了一个 wpf 用户控件,它可以从列表中加载数据并将其显示在 excel 工作表中。它完美地工作。然后我扩展我的客户端应用程序以更新服务器中的列表项。因此,我尝试使用 Web 服务引用使用 UpdateListItems 方法更新服务器中的列表项。
但它失败并出现异常“Soap Server Exception。”。我无法弄清楚这里出了什么问题,因为我可以毫无问题地导入数据。以下是我的代码块。
SPListsWS.Lists myListUpdateProxy = new SPListsWS.Lists();
myListUpdateProxy.Credentials = CredentialCache.DefaultCredentials;
myListUpdateProxy.Url = "http://uvo1y1focm66gonf7gw.env.cloudshare.com/_vti_bin/Lists.asmx";
XmlNode listView = myListUpdateProxy.GetListAndView("Products", "");
string listID = listView.ChildNodes[0].Attributes["Name"].Value;
string viewID = listView.ChildNodes[1].Attributes["Name"].Value;
XmlDocument Xdoc = new XmlDocument();
XmlElement updateElement = Xdoc.CreateElement("updateElement");
updateElement.SetAttribute("OnError", "Continue");
updateElement.SetAttribute("ListVersion", "1");
updateElement.SetAttribute("ViewName", viewID);
updateElement.InnerXml = "<Method ID='1' Cmd='Update'>"
+ "<Field Name = 'ID'>" + index + "</Field>"
+ "<Field Name = 'Title'>" + prodTitle + "</Field>"
+ "<Field Name = 'Product_SKU'>" + prodSKU + "</Field>"
+ "<Field Name = 'Product_Price'>" + prodPrice + "</Field>"
+ "</Method>";
XmlNode responseXml = myListUpdateProxy.UpdateListItems("Products", updateElement);
MessageBox.Show(responseXml.OuterXml);