ho provato ad usare questo script di test:
<%
'Dichiaro la variabile
Dim objXMLHttp
'Instanzio l'oggetto XMLHttp
Set objXMLHttp = Server.CreateObject("Msxml2.XMLHTTP.4.0")
'Costruisco e invio la richiesta
objXMLHttp.Open "GET", "http://www.minifloppy.it/xml/img/esempio.xml", False
objXMLHttp.Send
'Stampo la risposta
Response.Write(HttpReq.responseXML.xml)
'Faccio pulizia
Set objXMLHttp = Nothing
%>
iis mi risponde:
Tipo di errore:
Oggetto Server, ASP 0177 (0x800401F3)
Stringa dell'interfaccia non valida.
/lastfinale4/xml.asp, line 6
line 6 "Set objXMLHttp = Server.CreateObject("Msxml2.XMLHTTP.4.0")"
da cosa può essere causato?

Rispondi quotando