We need to invoke an existing web service to achieve certain functionality.
We used the following Lotus script code in an action button to achieve this.
sWSDL = “” ’ URL of the webservice
Set Client =CreateObject(“MSSOAP.SoapClient”)
Call Client.mssoapinit (sWSDL)
result = Client.GetVehicleInventory(“JTEBU11F470051352”)
Messagebox result, MB_OK, “Quote”
But we are getting the following error message
"Client: WSDLReader:Loding of the WSDL file failed HRESULT=0x80070057 - WSDLReader:XML Parser failed at linenumber 0, lineposition 0, reason is: The download of the specified resource has failed.
HRESULT=0x1"
Please help us to resolve this issue.
Also,it would be helpful if we get some sample code to invoke a web service from a lotus database.
Thanks.