从Windows服务调用Reporting Services的安全异常

时间:2013-04-12 10:26:12

标签: wcf reporting-services windows-services ssrs-2008

我正在尝试从Windows服务调用SQL Server Reporting Services的Web服务。我可以成功地从Asp.Net MVC网站拨打电话,但是当我尝试使用与Windows服务完全相同的代码时(看似相同的WCF配置),我收到以下错误...

  

内部异常:System.ServiceModel.Security.MessageSecurityException    - HTTP请求未经授权使用客户端身份验证方案'Ntlm'。从服务器收到的身份验证标头是“NTLM”。

     

内部异常:System.Net.WebException - 返回远程服务器   错误:(401)未经授权。

我的Asp.Net MVC网站的应用程序池和Windows服务都设置为使用“网络服务”用户。

这是我在配置文件中的WCF配置...

 <system.serviceModel>
<serviceHostingEnvironment
        aspNetCompatibilityEnabled="true"/>
<bindings>
  <basicHttpBinding>
    <binding name="ReportExecutionServiceSoap" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
      <readerQuotas maxArrayLength="2147483647"
                    maxStringContentLength="2147483647"
                    maxBytesPerRead="2147483647"
                    maxDepth="2147483647"
                    maxNameTableCharCount="2147483647"
                    />
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Ntlm" proxyCredentialType="None" realm=""/>
      </security>
    </binding>

  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="http://myserver/ReportServer_MSSQL2008/ReportExecution2005.asmx"
      binding="basicHttpBinding" bindingConfiguration="ReportExecutionServiceSoap"
      contract="ReportService.ReportExecutionServiceSoap" name="ReportExecutionServiceSoap" behaviorConfiguration="ImpersonationBehaviour" />
</client>
<behaviors>
  <endpointBehaviors>
   <behavior name="ImpersonationBehaviour">
    <clientCredentials>
     <windows allowedImpersonationLevel="None" allowNtlm="true"/>
    </clientCredentials>
   </behavior>
  </endpointBehaviors>
</behaviors>

我已经尝试了所有不同的“allowedImpersonationLevel”,并且在没有定义此行为的情况下尝试过它。

1 个答案:

答案 0 :(得分:0)

让您引用所有需要在som点运行Windows应用程序的代码。