PDA

View Full Version : Set oSOAP = Server.CreateObject("MSSOAP.SoapClient")


brazenskies
06-23-2009, 02:40 PM
I am having some issues with this.

Obvously Microsoft errors are incredibly helpful so it's showing me this...


Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/soap.asp, line 11

800401f3


This is my code....


Dim oSOAP
Dim objDOMDoc
Dim objNodeList
Dim objChildNodeList

Set oSOAP = Server.CreateObject("MSSOAP.SoapClient")
oSOAP.ClientProperty("ServerHTTPRequest") = True
oSOAP.mssoapinit("http://www50.brinkster.com/vbfacileinpt/np.asmx?wsdl")

Set objDOMDoc = Server.CreateObject("Msxml2.DOMDocument.4.0")
objDOMDoc.loadXML(CStr(oSOAP.GetCustomerData))



I have installed Microsoft SOAP toolkit 3.0 and MSXML 4.0 but I don't really understand why I'm still getting an error.

Any ideas?

THIS ISSUE SEEMS TO HAVE RESOLVED ITSELF. THANKS ALL

brazenskies
06-23-2009, 08:49 PM
I figured out what happened if anyone's interested.

I had installed MSSOAP30.DLL so I changed...

Set oSOAP = Server.CreateObject("MSSOAP.SoapClient")

to...

Set oSOAP = Server.CreateObject("MSSOAP.SoapClient30")

termmy
02-16-2012, 09:08 AM
Thank you so much. you are my hero.