I'm getting some kind of access restrictions when trying to update an xml file.
The following code works fine. It will read in the file and I can display and manipulate the data:
<%
Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM"
xmlDoc.async = false
xmlDoc.load server.mappath("oncall.xml"
%>
However, when I attempt to save it back to the disk with this:
<%xmlDoc.save server.mappath("oncall.xml"
%>
it gives some users an access restriction error.
I'm doing this site in Frontpage, and the users who can update this xml file are those with edit permissions to the site. I set the permissions on this particular file to let everyone edit it, but that still doesn't work; it still gives the same error.
I've also tried moving the file off of this server, but I still get an access restriction.
Does anyone know if there are any special groups I need to add to this file's permissions to let my asp update this file?
The following code works fine. It will read in the file and I can display and manipulate the data:
<%
Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM"
xmlDoc.async = false
xmlDoc.load server.mappath("oncall.xml"
%>
However, when I attempt to save it back to the disk with this:
<%xmlDoc.save server.mappath("oncall.xml"
it gives some users an access restriction error.
I'm doing this site in Frontpage, and the users who can update this xml file are those with edit permissions to the site. I set the permissions on this particular file to let everyone edit it, but that still doesn't work; it still gives the same error.
I've also tried moving the file off of this server, but I still get an access restriction.
Does anyone know if there are any special groups I need to add to this file's permissions to let my asp update this file?