Does anybody know whether there is any issue with json object if a lengthy string object is passed.

I'm calling a webmethod with its content as encoded html data. The string generated is around 7000 in count and this is not getting passed to the webmethod from the clientside. Please help.

link|improve this question

63% accept rate
feedback

2 Answers

Sol 1:One more thing you can do is check for the Compression like Gzip which may reduce your content size.

sol 2: check this config property maxStringContentLength and maxBytesPerRead. Also make sure that whatever binding configuration you set up, you're actually using it in all the right places.

Following link may resolve your issue : http://social.msdn.microsoft.com/forums/en-US/wcf/thread/c2a770ed-a7ff-4c9e-a318-8b86b2f59a85

link|improve this answer
feedback

Try the following url...

http://forums.asp.net/t/1321566.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.