为什么Sharepoint 2010 Web Reference有效,但Service Reference没有

时间:2010-03-08 03:52:14

标签: .net sharepoint asmx sharepoint-2010 service-reference

Sharepoint设置为使用NTLM身份验证。

当我将http://myserver/Sites/Ops/_vti_bin/Lists.asmx?WSDL作为Web引用引用时,我可以调用这些方法并获得有效的响应。

当我引用相同的url作为服务引用时,服务器在调用方法时抛出异常。

我的帐户是Sharepoint Farm的管理员。

这是服务引用的app.config(主要是自动生成的):

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
    </configSections>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="ListsSoap" closeTimeout="00:01:00" openTimeout="00:01:00"
                    receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
                    bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                  <security mode="TransportCredentialOnly">
                    <transport clientCredentialType="Ntlm" />  
                  </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://myserver/Sites/Ops/_vti_bin/Lists.asmx"
                binding="basicHttpBinding" bindingConfiguration="ListsSoap"
                contract="SharepointLists.ListsSoap" name="ListsSoap" />
        </client>
    </system.serviceModel>
</configuration>

可悲的是,例外提供的唯一信息是:

“抛出了'Microsoft.SharePoint.SoapServer.SoapServerException'类型的异常。”

没有其他细节。

我正在使用的代码是:

 public ListClass()
    {

        _Client = new SharepointLists.ListsSoapClient();

    }

    public System.Xml.Linq.XElement GetTaskList()
    {
        return _Client.GetList("Tasks");

    }

有什么想法?我想使用服务参考而不是Web参考。

更新:

我尝试了Rob的建议并得到了这个错误:

HTTP GET Error
    URI: http://myserver/Sites/Ops/_vti_bin/Lists.asmx

    The document at the url http://myserver/Sites/Ops/_vti_bin/Lists.asmx
     

未被识别为已知文档类型。       每种已知类型的错误消息可以帮助您解决问题:        - 来自“http://myserver/Sites/Ops/_vti_bin/Lists.asmx”的报告是“该文件       格式无法识别(内容类型为'text / html;   字符集= UTF-8 ')。'。        - 来自'DISCO Document'的报告是'下载时出错   'http://myserver/_vti_bin/Lists.asmx?disco'。“。          - 请求失败,HTTP状态为404:未找到。        - 来自'WSDL文档'的报告是'文档格式无法识别   (缺点       帐篷类型是'text / html;字符集= UTF-8 ')。'。        - 来自'XML Schema'的报告是'文件格式无法识别(   conten       t type是'text / html;字符集= UTF-8 ')。'

1 个答案:

答案 0 :(得分:1)

“添加服务引用”对话框不会为ASMX服务生成正确的配置。你需要使用svcutil。

此博客文章可以帮助您http://nayyeri.net/integrating-wcf-clients-with-asmx-services