I am implementing aceess Web Service from VBA, installed SoapToolkit30, and tried to run the code below in VBA.
Sub test_webservice()
Dim SoapClient As New SoapClient30
Dim UserName As String
Dim Password As String
Dim resultinfo As String
Set SoapClient = CreateObject("MSSOAP.SoapClient30")
UserName = "12345"
Password = "12345"
SoapClient.MSSoapInit ("https://qa-sharenet-ims.int.net.nokia.com:8443/les-services/services/Authentication?wsdl")
resultinfo = SoapClient.AuthenticateApplicationRequest(UserName, Password)
End Sub
But in my VBA enviroment, there are only some class as below, I can't find SoapClient.AuthenticateApplicationRequest. How to handle it? Many many thanks.