mi sono accorto da uno script ASP
che il mio parser 6.0 MSXML sembra andato a farsi friggere

eppure è installato... correttamente

e l'errore che ottengo dallo script è:

Oggetto Server, ASP 0177 (0x800401F3)
Stringa dell'interfaccia non valida.

L'errore è qui...:

Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")

Poi ho provato a registrare le DLL MSXML

fino alla 2 nessun problema...
dalla 3 alla 6 la registrazione non riesce...

non voglio formattare per uan banalità simile...
potete aiutarmi.. ?
grazie.

codice:
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP") 
Set objXmlDOM = Server.CreateObject("Microsoft.XMLDOM")

objXMLHTTP.Open "POST", "miosito", False
objXMLHTTP.Send (null)
If objXMLHTTP.status = 200 then

' controllo che non ci siano errori:
objXmlDOM.loadXML(objXMLHTTP.ResponseText)
else
'errore
end if