I'm getting xmlHttp.readyState 1 when sending these parameters and it only happens when parameter 'text' is very big.
var url="replaceText4.jsp";
url=url+"version="+version+"&work="+actualWork+"&secName="+secName+"&text="+text;
xmlHttp.open("POST",url,true);
xmlHttp.send(url);
Could you help me on this?