Visual Basic 6 WSDL Soap Proxy

How do I generate Visual Basic 6 Proxy dll / tlb from WSDL file?

Similar to WSDL2Java for java, but for Visual Basic.

Thank.

+2


source to share


1 answer


You can create a web service proxy using one of the tools available in .NET, either through Visual Studio or one of the command line programs (wsdl.exe when using ASMX or svcutil.exe when using WCF ) and make the resulting class and its containing assembly available to COM .

If you want a native VB6 solution, I believe the SOAP Toolkit is your best bet .



Also see this related SO question:
What is the best way to use a web service from VB6?

+3


source







All Articles