ASP
--
Questions
--
Followers
Top Experts
ServerXMLHTTP problem
Can you please help me I am trying to run this code but I am getting this error :
msxml3.dll error '80072f7d'
An error occurred in the secure channel support
<%
Dim xmlServerHttp
strURL = "https://wwws.echo-inc.com/scripts/INR200.EXE"
set xmlServerHttp = Server.CreateObject("Msxml 2.ServerXM LHTTP")
xmlServerHttp.open "GET",strURL, False
xmlServerHttp.SetRequestHe ader "Connection", "Keep-Alive"
xmlServerHttp.send
Response.Write xmlServerHttp.responsetext
%>
msxml3.dll error '80072f7d'
An error occurred in the secure channel support
<%
Dim xmlServerHttp
strURL = "https://wwws.echo-inc.com/scripts/INR200.EXE"
set xmlServerHttp = Server.CreateObject("Msxml
xmlServerHttp.open "GET",strURL, False
xmlServerHttp.SetRequestHe
xmlServerHttp.send
Response.Write xmlServerHttp.responsetext
%>
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Not very sure, but you could try this
<%
Dim xmlServerHttp
strURL = "https://wwws.echo-inc.com/scripts/INR200.EXE"
set xmlServerHttp = Server.CreateObject("Msxml 2.ServerXM LHTTP")
xmlServerHttp.open "GET",strURL, False
xmlServerHttp.send
' Put within braces
xmlServerHttp.SetRequestHe ader("Conn ection","K eep-Alive" )
xmlServerHttp.send
Response.Write xmlServerHttp.responsetext
%>
<%
Dim xmlServerHttp
strURL = "https://wwws.echo-inc.com/scripts/INR200.EXE"
set xmlServerHttp = Server.CreateObject("Msxml
xmlServerHttp.open "GET",strURL, False
xmlServerHttp.send
' Put within braces
xmlServerHttp.SetRequestHe
xmlServerHttp.send
Response.Write xmlServerHttp.responsetext
%>
It did not work
Take a look at this article from MSDN:
Err Msg: An Error Occurred in the Secure Channel Support
http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q216539&
Anthony
Err Msg: An Error Occurred in the Secure Channel Support
http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q216539&
Anthony






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:
Accept Answer by acperkins
Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
GaryC123
EE Cleanup Volunteer
I will leave a recommendation in the Cleanup topic area that this question is:
Accept Answer by acperkins
Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
GaryC123
EE Cleanup Volunteer
ASP
--
Questions
--
Followers
Top Experts
Active Server Pages (ASP) is Microsoft’s first server-side engine for dynamic web pages. ASP’s support of the Component Object Model (COM) enables it to access and use compiled libraries such as DLLs. It has been superseded by ASP.NET, but will be supported by Internet Information Services (IIS) through at least 2022.