473,508 Members | 2,326 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

msxml3.dll error '80072efd'

I'm having a problem on Windows 2003 Server with this script. It
appears to be a problem with MS XML 4.0 as this code was working fine
under MS XML 3.0 and Windows XP or 2000. Any ideas? The purpose of the
script is to act as a 'proxy' and send a POST or GET to another URL but
return the response through the ASP page as if the ASP page handled the
request:

<%@language=JScript%>
<%
var objSrvHTTP=Server.CreateObject("MSXML2.ServerXMLHT TP");
var url="http://someurl"

if (Request.ServerVariables("REQUEST_METHOD")=="POST" ) {
var DataToSend = Request.BinaryRead(Request.TotalBytes);
objSrvHTTP.open("POST",url,false);
objSrvHTTP.setRequestHeader("Content-type","application/x-www-form-urlencoded");
objSrvHTTP.send(DataToSend);
} else {
objSrvHTTP.open("GET",url+"?"+Request.ServerVariab les("QUERY_STRING"),false);
objSrvHTTP.send();
}
Response.Write(objSrvHTTP.responseText);
%>

de*******@gmail.com
Cliff.

Jul 22 '05 #1
3 7255
de*******@gmail.com wrote:
I'm having a problem on Windows 2003 Server with this script. It
appears to be a problem with MS XML 4.0 as this code was working fine
under MS XML 3.0 and Windows XP or 2000. Any ideas? The purpose of the
script is to act as a 'proxy' and send a POST or GET to another URL
but return the response through the ASP page as if the ASP page
handled the request:

Could you provide a better description of the symptoms you are experiencing?
Not all of us have all the error codes memorized ...

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #2
I have a simple HTML form which performs a POST to myproxy.asp. When
myproxy.asp executes it encounters an HTTP error 500 msxml3.dll error
'80072efd' on the send command. There is no more documentation or
explanation for the error message than that. The microsoft docs on the
issue are little 'light' as well so I don't know what could be causing
this error. I've made sure ASP script debugging is disabled, made sure
scripting is enabled, verified that the URL that I am connecting to in
the asp page is accessible from the server, etc.

Thanks for any assistance.

Cliff.

Bob Barrows [MVP] wrote:
de*******@gmail.com wrote:
I'm having a problem on Windows 2003 Server with this script. It
appears to be a problem with MS XML 4.0 as this code was working fine under MS XML 3.0 and Windows XP or 2000. Any ideas? The purpose of the script is to act as a 'proxy' and send a POST or GET to another URL
but return the response through the ASP page as if the ASP page
handled the request:
Could you provide a better description of the symptoms you are

experiencing? Not all of us have all the error codes memorized ...

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a quicker response by posting to the newsgroup.


Jul 22 '05 #3
I've never run into this error, but check out the results of this google
search:
http://groups-beta.google.com/groups...=1&sa=N&tab=wg

Bob Barrows
de*******@gmail.com wrote:
I have a simple HTML form which performs a POST to myproxy.asp. When
myproxy.asp executes it encounters an HTTP error 500 msxml3.dll error
'80072efd' on the send command. There is no more documentation or
explanation for the error message than that. The microsoft docs on the
issue are little 'light' as well so I don't know what could be causing
this error. I've made sure ASP script debugging is disabled, made sure
scripting is enabled, verified that the URL that I am connecting to in
the asp page is accessible from the server, etc.

Thanks for any assistance.

Cliff.

Bob Barrows [MVP] wrote:
de*******@gmail.com wrote:
I'm having a problem on Windows 2003 Server with this script. It
appears to be a problem with MS XML 4.0 as this code was working
fine under MS XML 3.0 and Windows XP or 2000. Any ideas? The
purpose of the script is to act as a 'proxy' and send a POST or GET
to another URL but return the response through the ASP page as if
the ASP page handled the request:

Could you provide a better description of the symptoms you are
experiencing? Not all of us have all the error codes memorized ...

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get
a quicker response by posting to the newsgroup.


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
13343
by: Nigel Murdoch | last post by:
I have an online ordering site that returns this error message when an order is submitted which is supposed to fire a confirmation email. The complete error is: msxml3.dll error '80072ee7' ...
1
7313
by: shubha | last post by:
Good Evening, I am using vb component in asp to get the google results. By running asp file i am getting error as Error Type: msxml3.dll (0x800C0005) The system cannot locate the resource...
0
2570
by: Vinod | last post by:
Hi, I am getting this error in the notify-url of the paypal msxml3.dll error '80072f06' The host name in the certificate is invalid or does not match can you guys help me up regards vinod
4
18047
by: Charlie Company | last post by:
I wonder if anyone might be able to help me on this one. I am using MSXML3 in ASP to do a POST to a JSP page that's on the same server as my ASP page. The error I get is: msxml3.dll error...
5
4659
by: ram | last post by:
Hi i AM USING VISUAL STUDIO.NET FOR MY ASP.NET PROGRAMS. I would like to access xml files using MSXML3.0 parser. Can any body tell me the syntax of "Import" statement to call this control in my...
0
5477
by: Jim | last post by:
Can anyone think why Im getting the following message when I try to write to an XML fill using IIS but when I upload it to my web server it writes no problem? I've enabled write acces to the XML...
1
15003
by: JordanRieger | last post by:
Here is a nasty issue that has been giving me grief for the last couple days. This requires good knowledge of IIS, MSXML, and Windows/NTFS permissions. We have an existing ASP (VBScript) app...
1
4843
by: xxx300xxx | last post by:
Hey everyone, we recently switched over to godaddy.com for our hosting and all of a sudden myu asp is not working. It shows: msxml3.dll error '800c0005' The system cannot locate the resource...
4
7876
by: Mike | last post by:
I have an asp page that is calling the msxml2.dll to open a XML file. When I load the page for the first time I get msxml3.dll error '80070005' Access Denied Error but when I refresh the...
0
7118
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7379
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7493
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5625
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5049
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3192
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3180
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
763
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.