EDN Admin
Well-known member
Hello,
Here is my problem: I have created a page that connects to an vendor for hotel information. I also have another page that does the same thing to another vendor. One page works great with no problems, but the other page does. After some
time, can be a day to seven days, one page gives this error: msxml3.dll error 800c0007 System error: -2146697209. I have looked and looked to see if there was a fix for it. I have run registry programs and installed version 6 of the msxml.dll.
This is running on Server 2003 Standard Edition Service pack 2 with IIS6.
I am not sure where to turn because it works for some time and then breaks, so I do not think it is the code. The line number that it provides is where the soap request is sent. (I will take out the code for building the request.)
On the SOAPAction line if I provide any information it will give an error from the vendor, that is way it is blank.
oXmlHTTP6.Open "POST", serviceUrl, False <br/>
<br/>
oXmlHTTP6.setRequestHeader "Content-Type", "text/xml; charset=utf-8"
<br/>
oXmlHTTP6.setRequestHeader "SOAPAction", ""<br/>
<br/>
SOAPRequest1 = "<?xml version=""1.0"" encoding=""utf-8""?>"<br/>
SOAPRequest1 = SOAPRequest1 & "<SOAP-ENV:Header>"<br/>
----More stuff here --------<br/>
SOAPRequest1 = SOAPRequest1 & "</SOAP-ENV:Envelope>"<br/>
<br/>
oXmlHTTP6.send SOAPRequest1
The above line is what the server says is the problem. <br/>
Any help would be great!
Thanks a lot.
View the full article
Here is my problem: I have created a page that connects to an vendor for hotel information. I also have another page that does the same thing to another vendor. One page works great with no problems, but the other page does. After some
time, can be a day to seven days, one page gives this error: msxml3.dll error 800c0007 System error: -2146697209. I have looked and looked to see if there was a fix for it. I have run registry programs and installed version 6 of the msxml.dll.
This is running on Server 2003 Standard Edition Service pack 2 with IIS6.
I am not sure where to turn because it works for some time and then breaks, so I do not think it is the code. The line number that it provides is where the soap request is sent. (I will take out the code for building the request.)
On the SOAPAction line if I provide any information it will give an error from the vendor, that is way it is blank.
oXmlHTTP6.Open "POST", serviceUrl, False <br/>
<br/>
oXmlHTTP6.setRequestHeader "Content-Type", "text/xml; charset=utf-8"
<br/>
oXmlHTTP6.setRequestHeader "SOAPAction", ""<br/>
<br/>
SOAPRequest1 = "<?xml version=""1.0"" encoding=""utf-8""?>"<br/>
SOAPRequest1 = SOAPRequest1 & "<SOAP-ENV:Header>"<br/>
----More stuff here --------<br/>
SOAPRequest1 = SOAPRequest1 & "</SOAP-ENV:Envelope>"<br/>
<br/>
oXmlHTTP6.send SOAPRequest1
The above line is what the server says is the problem. <br/>
Any help would be great!
Thanks a lot.
View the full article