Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting soapMapper error in web service call

Status
Not open for further replies.

sessionsa

Programmer
Oct 25, 2005
1
US
I have used the MS Soap kit 3.0 and have been able to initiate the webservice, using the following code, and the web service completes corectly. However, I am getting an error... "SoapMapper:Restoring data into SoapMapper string failed HRESULT=0x80070057: The parameter is incorrect. - Client: Unspecified client error. HRESULT=80070057: The parameter is incorrect."

This happens at the "cRetVal = soapClient.process("GREC1,$#$CV1438813B")" line of code. Any ideas?

Function...

'Create the SOAP Client
Dim soapClient As MSSOAPLib30.SoapClient30
Set soapClient = New MSSOAPLib30.SoapClient30
'soapClient.ClientProperty("ServerHTTPRequest") = True

'Initialize the soap client and pass the URL for
'the WSDL file as a parameter
Dim cWSDL As String
cWSDL = "
Call soapClient.MSSoapInit(cWSDL)


'Call the Execute() method and display the results
Dim cRetVal As String
cRetVal = soapClient.process("GREC1,$#$CV1438813B")
MsgBox (cRetVal)

End Function...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top