Skip to content

Instantly share code, notes, and snippets.

@mikeobrien
Created October 25, 2012 16:06
Show Gist options
  • Save mikeobrien/3953687 to your computer and use it in GitHub Desktop.
Save mikeobrien/3953687 to your computer and use it in GitHub Desktop.
WCF
<customBinding>
<binding name="ReachmailBuffered">
<security authenticationMode="UserNameOverTransport" includeTimestamp="false">
<secureConversationBootstrap />
</security>
<textMessageEncoding messageVersion="Soap11" maxReadPoolSize="209715200">
<readerQuotas maxStringContentLength="2147483647" />
</textMessageEncoding>
<httpsTransport maxReceivedMessageSize="209715200" maxBufferPoolSize="209715200" maxBufferSize="209715200" />
</binding>
<binding name="ReachmailStreamed" receiveTimeout="01:00:00" sendTimeout="01:00:00">
<security authenticationMode="UserNameOverTransport" includeTimestamp="false">
<secureConversationBootstrap />
</security>
<mtomMessageEncoding messageVersion="Soap11" />
<httpsTransport maxReceivedMessageSize="209715200" transferMode="Streamed" />
</binding>
<binding name="ReachmailRestHttpStreamed">
<httpTransport maxReceivedMessageSize="209715200" manualAddressing="true" />
</binding>
<binding name="ReachmailRestHttpsStreamed">
<httpsTransport maxReceivedMessageSize="209715200" manualAddressing="true" />
</binding>
</customBinding>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment