the question is where is the XML file going to be saved. the client side or the server side.
check the following link. it might help
http://www.activewidgets.c
Main Topics
Browse All TopicsI need to be able to write / update an XML file with Ajax or JavaScript. I have seen solutions that update a node or something, but do not physically write to the specified XML file. I am using ASP.Net 2.0, but my host will not allow the updating / writing of XML Files via ASp.Net due to their security policy.
We think updating the file via client-side Ajax or JavaScript DOM will get us around this, but cannot find any good solutions / example. Any help is greatly appreciated!!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
the question is where is the XML file going to be saved. the client side or the server side.
check the following link. it might help
http://www.activewidgets.c
>>From everything i see it looks like it cannot be done, correct?
Correct, but that answer is based on this "...but my host will not allow the updating / writing of XML Files via ASp.Net due to their security policy"
Of course, my assumption is that you want to save the updated xml file to the filesystem of your server. If your host offers databases, you could create a database to hold/save your xml contents. Hence, instead of saving the updated xml to the filesystem, you would save it to the database.
In terms of the applications that will use your xml data, it makes no difference if your xml is served from a database or from the filesystem. All that matters is that your XML file must be well formed.
Hence, instead of retrieving: http://somesite.com/myFile
Then in getData.asp, you would need to query the database to retrieve the XML content with id=3.
Business Accounts
Answer for Membership
by: hieloPosted on 2008-01-01 at 12:19:56ID: 20561292
You can update the "structure" of the XML file on the clientside, but it will the changes are only visible on the client. If you want to retain the changes, your server-side must allow you to write the changes to the file. Othewise as soon as the person leaves the page, the changes will be lost.