Click here to Skip to main content
15,889,116 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Dear Experts,

I am doing an ASP.Net project, In my project i am using ajax JSON for data transfer,
But i am stuck now, I can't send bulk datas to my webservice, when i sent 2 datas then it is working fine. But in the case of Bulk datas around 21 parameters i have tried to sent to webservice, It sometimes works, but most of the times it doesn't works...

Please Help Me....

Thanks and Regards,

Dileep
Posted
Updated 25-Apr-13 6:47am
v2
Comments
db7uk 25-Apr-13 16:51pm    
when it does not work, what is the error? what does fiddler tell you? Have you tried increasing the Http request size and time limit? how big is the data?
dilzz 26-Apr-13 7:38am    
NO am not tried to increasing the Http request size and time limit.. can u please tell me how to set these things...... and am trying to send 25 datas..

Thanks

1 solution

JSON is similar to other data formats like XML - if you need to transmit more data, you just send more data. There's no inherent size limitation to the overall JSON request itself. Any limitation would be set by the server parsing the JSON request. (For instance, ASP.NET has the "MaxJsonLength" property of the serializer.)

Cheers,
Edo
 
Share this answer
 

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