You cannot install maxRetryCountin the standard configuration wsHttpBinding. To set this value, you need to create a separate custom binding, and then refer to its service or client configuration:
<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 docs .
, <bindings> bindings.config, web.config/app.config:
<system.serviceModel>
<bindings configSource="bindings.config">
Visual Studio squiggly - , , , (XML- Visual Studio, , ).