Ciao.

Sto provando a far funzionare questo codice ASP: http://www.w3schools.com/xml/xml_server.asp

Ma restituisce questo errore:
msxml3.dll error '80070005'
Access is denied.

Da che può dipendere?

codice:
<%
text="<note>"
text=text & "<to>Tove</to>"
text=text & "<from>Jani</from>"
text=text & "<heading>Reminder</heading>"
text=text & "<body>Don't forget me this weekend!</body>"
text=text & "</note>"

set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.loadXML(text)

xmlDoc.Save("test.xml")
%>