我可以託管IIS的「正常」basichttp服務並通過本地網絡訪問它。 問題是,我試圖做一個雙工服務,並在IIS中託管它。在IIS中託管wcf雙工服務
我的web.config:
<system.serviceModel>
<services>
<service behaviorConfiguration="BaseBehavior" name="RegistrationService">
<endpoint binding="wsDualHttpBinding" bindingConfiguration="wsDualHttpBind" name="RegistrationService" contract="Service" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="BaseBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<wsDualHttpBinding>
<binding name="wsDualHttpBind" sendTimeout="00:01:00">
<security mode="None">
<message clientCredentialType="None" />
</security>
</binding>
</wsDualHttpBinding>
</bindings>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
錯誤消息我得到當我打開的 「http://本地主機/Service/Service.svc」:
「合同要求 「雙面」 結合「basicHttpBinding的「不支持此功能,並且支持配置不正確。」
我用Google搜索,發現不同的設置web.config中,但沒有奏效。 我的猜測是,在web.config是錯誤的。