Can anyone pls help me to clear this error....

"Run-time error '-2146697211 (800C 00%);
method 'send' of object 'IXMLHTTP Request' failed"


this is the fragment of code.......................

Set oXML = New MSXML2.XMLHTTP30
With oXML
.Open "POST", "http://www.myweb.com/test/create_text.asp", False
.setRequestHeader "text", "application/x-www-form-urlencoded"
.send ----'error occurs here
.sXMLReturned = .responseXML.xml
End With

.....................................