vote up 1 vote down star

Is it possible to modify/write data to an XML file without any server-side proxy(e.g. a php or asp script)? Can this be done via javascript? XSLT?

flag

3 Answers

vote up 1 vote down check

You can load and modify xml in browser, but writing the file back is a different thing.

I don't know of any feasible way of writing data back to a server without some kind of server side mechanism to write the data to disk.

link|flag
vote up 0 vote down

Using the XMLHTTPRequest object you can modify an XML document using XSLT. Here's a sample article for getting started.

link|flag
vote up -2 vote down

Yes it is possible. You can do it with pure javascript or using a library like jquery

link|flag
Browsed through this article on site point sitepoint.com/print/xml-javascript-mozilla/… The author of the article mentioned it is NOT possible to write to an XML file using client-side javascript. He wrote this near the bottom of his article. But you claim this is possible.I'm confused. – bokyo Oct 28 '08 at 3:09
The server remains responsible for writing to disk. The server might provide an API to do so, which can be called from javascript, but without a serverside mechanism in place, it's not possible. Period. – Martin Kool Oct 28 '08 at 10:07
Sorry, I misinterpreted the question – hectorsq Oct 28 '08 at 16:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.