Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I got the following error when i passed an entity object to a WebService

The maximum string content length quota (8192) has been exceeded while reading XML data. This quota may be increased by changing the MaxStringContentLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader



I tried to solve this problem by giving the below code in webconfig of Webservice,but the error still remains. Can anyone Help!!!!!


<bindings>
<basichttpbinding>
<binding>
name="myBinding"
maxReceivedMessageSize="2147483647">
<readerquotas>
maxDepth="2147483647"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647" />


Posted

1 solution

did u set like this...
C#
<bindings>
  <nettcpbinding>
    <binding name="ExStreamWCFBinding" closetimeout="00:00:05" opentimeout="00:00:05" receivetimeout="00:00:05" sendtimeout="00:00:05" transfermode="Buffered" transactionprotocol="OleTransactions" hostnamecomparison="StrongWildCard" maxbufferpoolsize="524288" maxbuffersize="524288" maxconnections="10" maxreceivedmessagesize="5242880">
      <readerquotas maxdepth="32" maxstringcontentlength="5242880" maxarraylength="16384" maxbytesperread="4096" maxnametablecharcount="16384" />
    </binding>
  </nettcpbinding>
</bindings>

<endpoint address="" binding="netTcpBinding" bindingconfiguration="ExStreamWCFBinding">
</endpoint>


Refer these links for more info.
http://bipinkarms.com/wp/?p=140[^]

http://stackoverflow.com/questions/6600057/the-maximum-string-content-length-quota-8192-has-been-exceeded-while-reading-x#[^]
 
Share this answer
 
Comments
Arjun Menon U.K 2-Apr-13 3:39am    
where shall i put the end point tag
Naz_Firdouse 2-Apr-13 4:05am    
In the config file itself...
Arjun Menon U.K 2-Apr-13 4:44am    
No use :(

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900