VS 2012 で WCF のテストを行っています。これにはカスタム Http バインディングがあり、エンドポイントで使用されます。しかし、それをテストするときにメタデータが見つからないというエラーが発生しますwcfclient.exe
web.config
以下は、ファイルで作成したカスタム コードです。
<bindings>
<basicHttpBinding>
<binding name="MaxHttp" allowCookies="true"
maxReceivedMessageSize="20000000"
maxBufferSize="20000000"
maxBufferPoolSize="20000000">
<readerQuotas maxDepth="32"
maxArrayLength="200000000"
maxStringContentLength="200000000"/>
</binding>
</basicHttpBinding>
<!---->
</bindings>
<services>
<service name="AdventureW.Service.Database.AwService">
<endpoint address="http://localhost:49551" binding="basicHttpBinding" bindingConfiguration="MaxHttp" contract="AdventureW.Service.Database.IWsService"/>
</service>
</services>