IIS で「通常の」basichttp サービスをホストし、ローカル ネットワーク経由でアクセスできます。問題は、二重サービスを実行して IIS でホストしようとしていることです。
私の 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://localhost /Service/Service.svc」を開いたときに表示されるエラー メッセージ:
「コントラクトには「二重」バインディングが必要です」「BasicHttpBinding はこれをサポートしておらず、サポートが正しく構成されていませんでした。」
私はグーグルでweb.configのさまざまな設定を見つけましたが、どれも機能しませんでした。私の推測では、web.config が間違っていると思います。