H
Harry
Hi all
While this is essentially a VB6 question it involves calling a VB.Net Web
Service and anything .Net seems to get the VB6 group very riled up. Seems a
pity because this stuff is so simple in .Net.
We have a client that wants to utilise one of our web services but they
still develop in VB6.
Oure test service has the following authentication (Basic):
Public Class InterLinkCredentials
Inherits SoapHeader
Public Account_ID As Integer
Public Password As String
End Class
Public Credentials As New InterLinkCredentials
and methods are like the following:
<WebMethod(Description:="Test user credentials in SOAP header"),
SoapHeader("Credentials")> _
Public Function Test_Connection() As Boolean
Can anyone help me with putting the above credentials into a SOAP3 header in
vb6? I have searched for several days and cannot find an example that works.
Thank you
While this is essentially a VB6 question it involves calling a VB.Net Web
Service and anything .Net seems to get the VB6 group very riled up. Seems a
pity because this stuff is so simple in .Net.
We have a client that wants to utilise one of our web services but they
still develop in VB6.
Oure test service has the following authentication (Basic):
Public Class InterLinkCredentials
Inherits SoapHeader
Public Account_ID As Integer
Public Password As String
End Class
Public Credentials As New InterLinkCredentials
and methods are like the following:
<WebMethod(Description:="Test user credentials in SOAP header"),
SoapHeader("Credentials")> _
Public Function Test_Connection() As Boolean
Can anyone help me with putting the above credentials into a SOAP3 header in
vb6? I have searched for several days and cannot find an example that works.
Thank you