Skip to content

Instantly share code, notes, and snippets.

@thomasjo
Created July 6, 2011 05:30
Show Gist options
  • Save thomasjo/1066628 to your computer and use it in GitHub Desktop.
Save thomasjo/1066628 to your computer and use it in GitHub Desktop.
Bloated WCF binding
<binding
name="AdaptiveAuthenticationInterface"
closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00"
sendTimeout="00:01:00"
allowCookies="false"
bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536"
maxBufferPoolSize="524288"
maxReceivedMessageSize="65536"
messageEncoding="Text"
textEncoding="utf-8"
transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas
maxDepth="32"
maxStringContentLength="8192"
maxArrayLength="16384"
maxBytesPerRead="4096"
maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment