SharePoint GetListItems Across Domain



我基本上需要在不同的服务器上从SharePoint列表执行GetListItems。我试过不同的代码,但都错了。有人能看看我所拥有的,看看是错了还是不可能?我得到错误警报,然后xData.ResponseText警报为"未定义"。之后什么都没有。我运行代码的服务器是server3.intranet.com。谢谢。

var soapEnv =
    "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> 
        <soapenv:Body> 
             <GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'> 
                <listName>Shared Documents</listName> 
                <viewFields> 
                    <ViewFields> 
                        <FieldRef Name='Title' /> 
                   </ViewFields> 
                </viewFields> 
            </GetListItems> 
        </soapenv:Body> 
    </soapenv:Envelope>";
function Result(xData, status) {
    alert(xData.responseText);
    $(xData.responseXML).find("z\:row").each(function() {
        var title = $(this).attr("ows_Title");
        alert(title);
    });
}
    $.ajax({
    url: "http://teams02.intranet.com/sites/MySite/_vti_bin/Lists.asmx",
    type: "POST",
    dataType: "JSONP",
    crossDomain: true,
    data: soapEnv,
    complete: Result,
        contentType: "text/xml; charset="utf-8"",
 error:function(){
     alert("Error");
 }

那么,这个代码中有什么需要更改的地方吗?我使用的网址正确吗?我不确定我应该把它指向什么——是列表本身还是某种虚拟路径。

下面是一个工作示例:

$(function(){
    var soapEnv = 
    "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> 
        <soapenv:Body> 
            <GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'> 
                <listName>Shared Documents</listName> 
                <viewFields> 
                    <ViewFields> 
                        <FieldRef Name='Title' /> 
                    </ViewFields> 
                </viewFields> 
            </GetListItems> 
        </soapenv:Body> 
     </soapenv:Envelope>";
    $.ajax({
        url: "http://servername/mysite/_vti_bin/lists.asmx",
        type: "POST",
        dataType: "xml",
        data: soapEnv,
        contentType: "text/xml; charset="utf-8"",
        complete: function(xData, status){
            $(xData.responseXML).find("z\:row").each(function(){
                var title = $(this).attr("ows_FileLeafRef").split("#")[1];
                alert(title);
            })
        },
        error: function(){
            alert("error");
        }
    });
});

您面临着跨站点脚本编写的风险。为了实现您的目标,我建议您在javascript来自的同一服务器上创建一个服务,并实现从本地服务中的其他服务器检索数据的所有逻辑(即使用Linq2SharePoint或SOAP API)。从安全性和跨浏览器实现的角度来看,这将是最可靠的方法。

相关内容

  • 没有找到相关文章

最新更新