Hello! I'm having a problem sending XML through Microsoft.XMLHTTP object in ASP (not .NET). I have CDATA elements inside some of the XML nodes and i get this error while trying to send.
msxml3.dll error '80070005' Access is denied.
First of all, this only comes up with CDATA. If i remove it, all sends allright. I did a little googling and found out that i need to create an MSXML2.ServerXMLHTTP object BUT hosting server seems not to support this and i get invalid request error...
Here's ASP sending code:
Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP")
xmlhttp.Open "POST", m_sURL, False
xmlhttp.Send m_sXMLString
So, is there anyway to send XML with CDATA using Microsoft.XMLHTTP? Thanks!