maxRetryCount
標準構成では設定できませんwsHttpBinding
。その値を設定するには、個別のカスタムバインディングを作成し、サービスまたはクライアントの構成からそれを参照する必要があります。
<system.serviceModel>
<bindings>
<customBinding>
<binding name="wsCustomBinding">
<reliableSession maxRetryCount="15"/>
<textMessageEncoding/>
<httpTransport />
</binding>
</customBinding>
</bindings>
<services>
<service name="MyService">
<endpoint address="http://localhost:7878/MyServoce"
binding="customBinding"
bindingConfiguration="wsCustomBinding"
contract="IMyService" />
</service>
</services>
</system.serviceModel>
カスタムバインディングの定義は難しくありませんが、バインディングを構成する要素を正しい順序で指定する必要があります。リファレンスについては、カスタムバインディングに関するMSDNドキュメントを参照してください。
サーバーとクライアント間でカスタムバインディング構成を共有する場合は、その<bindings>
セクションを別のbindings.config
ファイルに入れて、web.config/app.configからその外部ファイルを参照することもできます。
<system.serviceModel>
<bindings configSource="bindings.config">
Visual Studioはこれについて不平を言い、赤い波線の下線を表示します-しかし私を信じてください-テクニックは機能します、私は毎日それを本番環境で使用します(構成のものを記述するVisual Studio XMLスキーマは完全で正確ではありません)。
マーク