What settings of BasicHttpBinding
should i use so that my WCF service fetches and updates data to the SQL server as fast of possible..
Security is not an issue..
Currently my client side config is in this way. It works, but I want to make it faster if possible :-
<system.serviceModel>
<bindings>
<customBinding>
<binding name="BinaryHttpBinding">
<binaryMessageEncoding />
<httpTransport />
</binding>
</customBinding>
</bindings>
<client>
<endpoint name="httpEndpoint"
address="my address"
binding="customBinding"
bindingConfiguration="BinaryHttpBinding"
contract="FLOW5ServiceDLL.IFLOW5WCFService"/>
<endpoint
address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</client>
</system.serviceModel>