Ciao a tutti

ho un semplice file asp che salva un file xml ma mi da questo errore... perchè????

Tipo di errore:
msxml3.dll (0x80070005)
Accesso negato.


codice:
<%
Dim xmlDoc, rootEl, child1, child2, p
Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")
Set rootEl = xmlDoc.createElement("root")
xmlDoc.appendChild rootEl
Set child1 = xmlDoc.createElement("child1")
Set child2 = xmlDoc.createElement("child2")
rootEl.appendChild child1
rootEl.appendChild child2
Set p=xmlDoc.createProcessingInstruction("xml","version='1.0'")
xmlDoc.insertBefore p,xmlDoc.childNodes(0)
xmlDoc.Save ("test.xml")
%>


Grazie
Maxxl