例外をクライアントとサービスのミスマッチ結合例外をスロー:WCF - バイナリエンコーディングを超えるHTTP
コンテンツタイプアプリケーション/石鹸+ msbin1 は、サービス http://localhost:1500/MyService.svcでサポートされていませんでした。 クライアントとサービスのバインディングが一致しない可能性があります。
クライアント構成:
<system.serviceModel>
<bindings>
<customBinding>
<binding name="NetHttpBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00">
<binaryMessageEncoding />
<httpTransport allowCookies="false" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard" maxBufferSize="65536"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
transferMode="Buffered" useDefaultWebProxy="true" />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://localhost:1500/MyService.svc"
binding="customBinding" bindingConfiguration="NetHttpBinding"
contract="APP.BLL.IMyServiceContract" name="MyServiceEndpoint" />
</client>
</system.serviceModel>
サーバ構成:
<system.serviceModel>
<bindings>
<customBinding>
<binding name="NetHttpBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00">
<binaryMessageEncoding />
<httpTransport allowCookies="false" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard" maxBufferSize="65536"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
transferMode="Buffered" useDefaultWebProxy="true" />
</binding>
</customBinding>
</bindings>
<services>
<service name="MyAppService">
<endpoint address="" binding="customBinding" bindingConfiguration="NetHttpBinding"
contract="APP.BLL.IMyServiceContract">
</endpoint>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
サービスはIISまたは他のホスティングアプリケーション内でホストされていますか? –
私は今のところVisual Studioの中でそれをホストしてきました。組み込みのWebサーバー(私はその名前を思い出すことはできません)。完了したらIISに展開します。 – mbursill
サーバー[エンドポイント**契約**](http://msdn.microsoft.com/en-us/library/system.servicemodel.description.serviceendpoint.contract.aspx)がエンドポイントによって使用される実際の契約。 – SliverNinja