我有一个Web服务,其中包含我需要运行以生成报告的方法。 Web服务方法是用.Net 2.0编写的,并且在我的测试系统上运行良好,该测试系统在与实时系统相同的服务器上运行。唯一的区别是实时版本使用https。
每当我将端点地址更改为实时服务并运行我的应用程序时,我只会从IIS中收到400(错误请求)错误。
我是否需要在app.config中的WCF设置中更改一些特定的配置设置才能使其与https配合使用?
“添加服务引用”创建的生成的app.config设置如下:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="ReportsSoap" 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="Transport" >
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://www.mysite.com/subdir/subdir/Reports.asmx"
binding="basicHttpBinding" bindingConfiguration="ReportsSoap"
contract="SystemReports.ReportsSoap" name="ReportsSoap" />
</client>
</system.serviceModel>
答案 0 :(得分:1)
是的,您必须更改绑定配置才能使用传输安全性。
<bindings>
<basicHttpBinding>
<binding name="YourCurrentBindingName" ...>
<security mode="Transport" />
</binding>
</basicHttpBinding>
</bindings>