How can I set the receiveTimeout and sendTimeout to infinity with this WCF contact?
I have the following app.config in my Host: <services> <service name="DCC_Service.DCCService" behaviorConfiguration="serviceBehavior"> <endpoint binding="netNamedPipeBinding" contract="DCC_Service.IDCCService" address="DCCService" /> <endpoint binding="mexNamedPipeBinding" contract="IMetadataExchange" address="mex" /> <host> <baseAddresses> <add baseAddress="net.pipe://localhost/"/> </baseAddresses> </host> </service> </services> <behaviors> <serviceBehaviors> <behavior name="serviceBehavior"> <serviceMetadata httpGetEnabled="false"/> </behavior> </serviceBehaviors> </behaviors> How do I set