Link to home
Start Free TrialLog in
Avatar of dik_sychev
dik_sychev

asked on

permition

When I tryed to save the data to the xml file:
{
xmlDom.save('Customer.xml')
}
, it gives the error message  "Access is denied" (one word permission)

How can I give permission to write data to the xml file?
Avatar of lexxwern
lexxwern
Flag of Netherlands image

is it a unix server, if so then chmod it and give it 777 rights.
Avatar of DreamMaster
DreamMaster

And if it is a windows server, right click on the file, choose properties, then security and change the security settings to suite your needs..

Max.
And if it is on the client you cannot due to security constraints.

CJ
Make it an .hta file if you do want it to save.

CJ
or maybe use the .htaccess file to define rights in your directory,

more help at http://www.apache.org/
You have to set "Accessing Data Across Domains" to "enable"
Local files are treated as own domain.
Look here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk30/htm/xmconxmlclientsecurity.asp
Hello,

try this:
<html>
<script language="JavaScript">
function writeXML()
{
var oXML = new ActiveXObject("Microsoft.XMLDOM");
var oRoot = oXML.createNode("element", "customers", "");
oXML.appendChild(oRoot);
var oNode = oXML.createNode("element", "customer","");
oRoot.appendChild(oNode)
var oNode2 = oXML.createNode("element", "order","");
oNode.appendChild(oNode2)
alert(oXML.xml)
   var fso = new ActiveXObject("Scripting.FileSystemObject");
   var MyFile = fso.CreateTextFile("c:\\prices.xml", true);
   MyFile.Write(oXML.xml);
   MyFile.Close();
}
writeXML();
</script>
</html>

Good luck,
zvonko

This question has been abandoned. I will make a recommendation to the moderators on its resolution in a week or so. I appreciate any comments that would help me to make a recommendation.
 
In the absence of responses, I may recommend DELETE unless it is clear to me that it has value as a PAQ. Silence = you don't care
 
ahosang
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:

PAQ
Please leave any comments here within the next seven days.
 
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
 
ahosang
EE Cleanup Volunteer
ASKER CERTIFIED SOLUTION
Avatar of SpideyMod
SpideyMod

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial