Ciao a tutti!

Nell'eseguire il mio file asp che va a trasferire alcune informazioni in formato xml mi è comparso questo errore:

Oggetto risposta error 'ASP 0185 : 80020003'

Impossibile trovare la proprietà predefinita

/riservato/easysite/portali/Portale_EBay.asp, riga 0

Impossibile trovare una proprietà predefinita dell'oggetto.


Questo errore è aggiunto quando ho aggiunto l'istruzione di scrittura della risposta dell'xmlhttp a questa funzione:
codice:
			function send_request(url,docs)
                Dim objXMLHTTP, xml ,risposta
                Set xml = Server.CreateObject("Microsoft.XMLHTTP")
                xml.Open "POST", url, False
                xml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
                xml.Send(docs)
                if xml.status = 200 then
                    send_request = xml.responseText
                    ' oppure in formato xml 
                    ' send_request = xml.responseXml
					Response.Write(xml.responseXML) 
                else
                    send_request = false
                    Response.write "Si è creato un errore interno."
                end if

                Set xml = Nothing
            end function
e queste sono le prime righe del file, che non ho assolutamente modificato
codice:
 

<html>
<head>
<title>Portale Ebay.IT</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Che errore posso avere alla riga 0?