Interfacing with a Web Service
-
I have a C++ application that I want to have interface with a C# Web Service application. What are the different ways that I can go about this? Thanks
-
I have a C++ application that I want to have interface with a C# Web Service application. What are the different ways that I can go about this? Thanks
One way that I know of: Download the Microsoft SOAP Toolkit. It has COM object which you can use for your purpose. Use MSSOAP.SoapClient30 to invoke methods such as mssoapinit(), InvokeHelper() which let you communicate with a Web Service with most of the transport details (http/soap) hidden from you. This will work just great for you… ;) I read that, Microsoft has now stopped supporting SOAP Toolkit (don't worry you will still be able to find soapsdk.exe somewhere), but what are the alternatives, is a question for me too. :confused: Salil Khedkar [^]