Link to home
Create AccountLog in
ASP

ASP

--

Questions

--

Followers

Top Experts

Avatar of Steve101
Steve101

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("Msxml2.ServerXMLHTTP")
xmlServerHttp.open "GET",strURL, False

xmlServerHttp.SetRequestHeader "Connection", "Keep-Alive"

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.


Avatar of jitgangulyjitganguly

Not very sure, but you could try this
<%
Dim xmlServerHttp

  strURL = "https://wwws.echo-inc.com/scripts/INR200.EXE"
set xmlServerHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
xmlServerHttp.open "GET",strURL, False
xmlServerHttp.send
' Put within braces
xmlServerHttp.SetRequestHeader("Connection","Keep-Alive")
xmlServerHttp.send

Response.Write xmlServerHttp.responsetext
%>

Avatar of Steve101Steve101

ASKER

It did not work

Avatar of Anthony PerkinsAnthony Perkins🇺🇸

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

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.


ASKER CERTIFIED SOLUTION
Avatar of Anthony PerkinsAnthony Perkins🇺🇸

Link to home
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.
Create Account

Avatar of GaryGary🇮🇪

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
ASP

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.