Having a problem that I cannot seem to get over. Simply trying to do a post of an xml string to a web site. Seems to work fine, until I hit a certain size of the string, then it fails. I have searched for other methods, but am coming up blank. Here is the code that I am trying to run:
%>
var objHTTP, strResult;
objHTTP = new XMLHttpRequest();
objHTTP.open('POST',<%=rtn_url%>,false);
objHTTP.setRequestHeader('Content-Type','text/xml');
objHTTP.send('oracleCart=' + <%=xmlString%>);
<%
the string <%=xmlString%> is a properly formatted XML string. I have dumped it's value and checked it. This is for a shopping cart. If I add over 10 items, I get errors saying that the xml format is not correct. Any help on this would be appreciated.
Thanks,
Mic