Hi all,

I want to send big amounts of data, like a very big text with 3 Mb from an iframe to a database. For this I send the text from javascript side to JSP and from here to MySQL.

When the text is big like this the text is not sentm the send method doesn't seem to work. What is the limit size? Is there a way to go around it?

Recommended Answers

All 3 Replies

Member Avatar for stbuchok

It depends on the web server you are using. For IIS I believe the default is 4MB, for Apache I believe it is 2MB. Not sure about others.

Also, yes you can increase the size.

Hi thanks, and how can I increase it?

I think I'm not doing something right. Because I'm sending the contents of an iframe about 60kb and the send fails:


var url="replaceText4.jsp";
url=url+"versao="+version+"&work="+actualWork+"&secName="+secName+"&text="+text;


xmlHttp.open("POST",url,true);
xmlHttp.send(url);

I want to send the text that comes from an iframe, and when it is too big it fails.. I'm sending these parameters to a jsp where I get the by request.getParameter(...)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.