Richard,
basicHttpBinding works fine on the inside network. But when we test with the corporate proxy , we see this error: "An operation was attempted on a nonexistent network connection" . I read that reliable session helps with proxy intermediaries (
http://msdn.microsoft.com/en-us/library/ms733136.aspx).
Background : The wcf is hosted by a NT Service. The web servicecontains using Microsoft Sync Services for ADO.NET , to upload ~ 61,000 sql server rows.
To avoid insufficient memory , I used streadmed, like this :
<basicHttpBinding>
<binding name="HttpBindingConfigurationStream" maxReceivedMessageSize="200000000" maxBufferSize="200000000" transferMode="Streamed" >
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
any help is much appreciated.
Peter