Hi all ,
i have created a webservices and i am calling it in a action button and passing values to the webservices the coding of it is as follows
Dim oSoapClient As MSSOAPLib30.SoapClient30
Set oSoapClient = New MSSOAPLib30.SoapClient30
Call oSoapClient.MSSoapInit("http://10.10.10.195/ATS/webcensus.nsf/savesoftware?WSDL")
Dim xmlString As String xmlString = oSoapClient.setSaveSoftwareInformation(s, tmp, result)
This where i am getting an error
I am getting an error on the setSaveSoftwareInformation .This is a property in the WSDL page to store values and vb is not able to identify it
how to make this code work
|