Estoy usando las librerias de MSXML para manipular archivos xml a traves de jscript, el unico problemas es que al intentar crear un nuevo documento XML me aparece un error de permiso denegado debido al IE.
Cuando ejecuto solo el script funciona, pero al correrlo en IE aparece este error. El codigo es:
<html>
<head>
<title>Enter the title of your HTML document here</title>
<SCRIPT LANGUAGE="JavaScript">
var xmldoc1 = new ActiveXObject("Msxml2.DOMDocument");
var xmldoc2 = new ActiveXObject("Msxml2.DOMDocument");
xmldoc1.load("usuario.xml");
xmldoc1.save("prueba.xml");
</script>
</head>
<body>
<p>Enter the body text of your HTML document here</p>
</body>
</html>