Hello everyone... I've got a simple question for you and a difficult one for me...
I'm trying to call a web service from an asp classic (asp 3.0) page, but i don't know how to.... Would you help me please or give some idea of what to do, including how to get the data that the web service may return (example a dataset or a boolean)
Thanks for your help.
Gabriel.

Consuming Web Services from ASP 3.0
tonino24
Hi,
You can use the SoapToolkit available in MSDN, it's a COM framework for executing WebServices, but that framework is not supported anymore.
http://www.microsoft.com/downloads/details.aspx FamilyId=C943C0DD-CEEC-4088-9753-86F052EC8450&displaylang=en
Another option is creating a .NET class that executes the web services using a .NET framework such as WSE or ASMX. And expose such class as a COM component so you can use that class from ASP.
Regards,
Diego Gonzalez, [C# MVP]
Lagash Systems SA
muysal
Ok. Thanks Diego. I Will try it.
Gabriel Mendez.