Hi there, i was wondering if its possible to add elements onto an existing XML file and how that would happen.
I am trying to find how to do that with AJAX but didnt find anything really. Only how to retrieve and read an XML.
If you're talking about altering the file itself, Ajax does not have that power. If you're talking about inserting an element temporarily (in the browser) Ajax can do that.
The former would require interacting with the server to get the file changed.
i see...so the solution would be to retrieve the XML document using AJAX and the http_request.XMLresponse, alter the XML document topically and write it on a new file which overwrites the existing...Right?