我可以使用 IIS 托管“普通”basichttp 服务并通过本地网络访问它。问题是,我正在尝试做一个双工服务并将其托管在 IIS 中。
我的网络配置:
<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://localhost /Service/Service.svc”时收到的错误消息:
“合约要求‘双工’绑定‘BasicHttpBinding’不支持这个,并且支持配置不正确。”
我用谷歌搜索并找到了 web.config 的不同设置,但没有一个有效。我的猜测是,web.config 是错误的。