我正在为支付网关使用 Web 服务。我写了下面的代码。它在 Windows XP 操作系统中运行。
但是当我在“Windows Embedded System(操作系统)”中运行此应用程序时,它显示为“系统错误-2147467259”。
我无法追踪错误。请帮我。
这是代码: Dim vXML Set httpReq = CreateObject("Microsoft.XMLHTTP") vXML = BuildXML() vXML = SoapWrapper(vXML)
httpReq.open "POST", webServiceUrl, False
httpReq.setRequestHeader "Content-Type", "text/xml"
httpReq.setRequestHeader "Connection", "close"
httpReq.setRequestHeader "SOAPAction", transactionUrl
httpReq.send vXML
我在“httpReq.send vXML”行中遇到错误。
谢谢