This is what I need:
I need to get an XML file from a server using the standard code:
if(window.XMLHttpRequest)
xmlhttp = new XMLHttpRequest();
else
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); // For IE6
xmlhttp.open("GET", xml_file, false);
xmlhttp.send();
xmldoc = xmlhttp.responseXML;
After this I need to make some changes to the XML information I received and save it to the server. Is this possible? Can I edit a file client side and send it to a server to replace the old file?