Created
July 6, 2011 05:30
-
-
Save thomasjo/1066628 to your computer and use it in GitHub Desktop.
Bloated WCF binding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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