Web Development
wsa.txt
Associated article: Integrating XML Web Services With VB6 Applications
Tags: Web Development .NET
Published source code accompanying the article by Max I. Fomitchev in which he shows how legacy VB6 applications can bconsume Web services written in C++. Also see WSA.ZIP.
Integrating XML Web Services with VB6 Applications
by Max I. Fomitchev
Example 1:
On Error GoTo WebServiceError
Dim ws As New MSSOAPLib.SoapClient
ws.mssoapinit "UltraMax.wsdl"
WebService.LogOn "InvalidUserName", "InvalidPassword"
...
WebServiceError:
MsgBox Err.Description &...


