Server Error in '/'application.
The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the maxcompute edmessagesize property on the appropriate binding element.Solution: modify the configuration file, <system. serviceModel>
<Bindings>
<BasicHttpBinding>
<Binding name = "UserInfoWebServiceSoap" closeTimeout = "00:01:00"
OpenTimeout = "00:01:00" receiveTimeout = "00:10:00" sendTimeout = "00:01:00"
AllowCookies = "false" bypassProxyOnLocal = "false" hostNameComparisonMode = "StrongWildcard"
MaxBufferSize = "2147483647" maxBufferPoolSize = "524288" maxcompute edmessagesize = "2147483647"
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>
</BasicHttpBinding>
</Bindings>
<Client>
<Endpoint address = "http: // 10.12.30.53/CCCService/UserInfoWebService. asmx"
Binding = "basicHttpBinding" bindingConfiguration = "UserInfoWebServiceSoap"
Contract = "UserInfoWebServiceReference. UserInfoWebServiceSoap"
Name = "UserInfoWebServiceSoap"/>
</Client>
</System. serviceModel>