3

我有一个 jax ws 客户端可以在给定列表名称和视图名称的情况下调用 GetListItems,并且它在我的 Windows 7 机器上本地运行良好。但是,当我部署到我的 Linux 服务器时,相同的服务返回零行。没有例外,我比较了两台机器的肥皂请求,结果相同

有没有人遇到过这个问题?

4

1 回答 1

0

您是否已通过 SharePoint 网站进行身份验证?这里有一篇关于 SharePoint ajax 身份验证的优秀文章:https ://sharepoint.stackexchange.com/questions/79803/how-to-authenticate-user-in-sharepoint-online-using-javascript

从上一个链接,这里是验证代码:

var soapDataString = "<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'> \
  <soap:Body> \
    <Login xmlns='http://schemas.microsoft.com/sharepoint/soap/'> \
      <username>username</username> \
      <password>password</password> \
    </Login> \
  </soap:Body> \
</soap:Envelope>"

// Call web service
$.ajax({
  url: "http://mywebsitename:2355/_vti_bin/authentication.asmx",
  type: "POST",
  dataType: "xml",
  data: soapDataString,
  success: resultsFeedback,
  contentType: "text/xml; charset=\"utf-8\""
});

function resultsFeedback(xData, status) {
   alert(xData);
   alert(status);
}
于 2014-07-21T21:30:12.513 回答