在asp classic中连接到https SOAP web服务

在asp classic中连接到https SOAP web服务,soap,asp-classic,Soap,Asp Classic,我正在一个使用asp classic的客户端网站上工作,希望连接此web服务https://acquirer.sb24.com:2789/ref-支付/ws/ReferencePayment?WSDL,它使用https协议。 这是我的代码: SET oSOAPay = Server.CreateObject("MSSOAP.SoapClient30") oSOAPay.ClientProperty("ServerHTTPRequest") = True Call oSOAPay.mssoapin

我正在一个使用asp classic的客户端网站上工作,希望连接此web服务
https://acquirer.sb24.com:2789/ref-支付/ws/ReferencePayment?WSDL
,它使用
https
协议。 这是我的代码:

SET oSOAPay = Server.CreateObject("MSSOAP.SoapClient30")
oSOAPay.ClientProperty("ServerHTTPRequest") = True
Call oSOAPay.mssoapinit(WebService, "ReferencePayment")

此代码适用于http web服务。初始http soap web服务有什么解决方案吗?

我相信链接可以帮助您。不要使用MSSOAP客户端组件;现在它已经停止使用4到5年了。不支持。有关使用VBScript调用SOAP服务的示例,请参见。不管是https还是http;此处显示的代码与相同。可能与的重复