JQuery和SharePoint Web Service的身份验证问题

时间:2010-02-03 06:46:44

标签: jquery sharepoint authentication web-services

我正在使用JQuery调用SharePoint Web服务(Webs.asmx)来获取所有子网站的列表:

$(document).ready(function() {
        var hrefParts = window.location.href.split('/');
        var wsURL = "";
        for (i = 0; i < (hrefParts.length - 2); i++) {
            if (i > 0)
                wsURL += "/";
            wsURL += hrefParts[i];
        }
        wsURL += "/_vti_bin/Webs.asmx";
        var soapEnv =
            "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> \
                <soapenv:Body> \
                    <GetAllSubWebCollection xmlns='http://schemas.microsoft.com/sharepoint/soap/'> \
                    </GetAllSubWebCollection > \
                </soapenv:Body> \
            </soapenv:Envelope>";

        $.ajax({
            url: wsURL,     
            beforeSend: function  (xhr) {  
 xhr.setRequestHeader("SOAPAction",  "http://schemas.microsoft.com/sharepoint/soap/GetAllSubWebCollection");
},
            type: "POST",
            dataType: "xml",
            data: soapEnv,
            complete: processResult,
            error:function(xhr,err){ 
    alert("readyState: "+xhr.readyState+"\nstatus: "+xhr.status); 
    alert("responseText: "+xhr.responseText); 
},
            contentType: "text/xml; charset=\"utf-8\""
        });

    });

    function processResult(xData, status) {
        ...
    }

但是,由于 beforeSend 调用,我总是遇到登录问题。如果我发表评论,我会从SharePoint获得“拒绝访问”错误页面。 我对网站和所有子网站都有“完全控制”访问权限。调用不同的Web服务(例如,从lists.asmx调用GetListCollection)是成功的。

这可能是什么问题?

1 个答案:

答案 0 :(得分:3)

此操作需要网站集管理员访问权限,即使完全控制也不够。

您可能需要通过GetWebCollection进行迭代,或者创建一个以提升的权限运行的代理页面并返回Web服务响应。