#8949
ctaleck
Participant

    I am unable to get the “Dilbert” or “Web Service Signature” Web Service examples to work on my machine using SoapClient method.

    set SoapClient = CreateObject("MSSOAP.SoapClient"). 
    

    I receive this error:

    quote:


    Client
    C:Documents and SettingsctaleckMy DocumentsAdvansysFormativAppletsTUT333 – Web Service Signature.vbf
    WSDLReader:Loading of the WSDL file failed HRESULT=0x80070057 – WSDLReader:XML Parser failed at linenumber 0, lineposition 0, reason is: System error: -2147012867.
    HRESULT=0x1 at line 31, column 6


    Can anyone tell me how I would check that I have the appropriate files to support this technique?

    In the meantime, I have been able to get this Web Service to work using the POST method:

        Set httpReq = CreateObject("MSXML2.ServerXMLHTTP")
        httpReq.Open "POST", webServiceUrl, False
        httpReq.Send
        Set myXmlDoc = CreateObject("MSXML.DOMDocument")
        myXmlDoc.load(httpReq.responseBody)
    

    Thank you.