我必须从我的WCF服务库中调用第三方Web服务。当我从测试应用程序调用第三方Web服务时,没有问题,但是当我从我的WCF服务调用时,出现错误:
接收到xxx.svc / ws的HTTP响应时发生错误。 这可能是......
我添加了Add Service Reference
的第三方网络服务。该Web服务的绑定自动生成为:
<wsHttpBinding>
<binding name="WSHttpBinding_xxxService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false"
hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsHttpBinding>
我的WCF服务的绑定是不同的:
<basicHttpBinding>
<binding name="basicHttpBinding" 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="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
我的WCF服务的绑定在测试app.config
文件中自动生成,但第三方服务的绑定仅在WCF appl config中生成。
我做错了什么?
答案 0 :(得分:0)
我找到了解决方案。问题是Web应用程序没有使用Web配置文件中配置的Web服务配置。它始终通过代理直接调用。所以我从代码中调用了Web服务,并以编程方式为web服务的web配置输入相同的设置,并添加了可以通过我的网络传递的代理地址。