Reputation: 17293
I have an C++/MFC project that I need to connect to a SOAP web service from to send data and receive a response. Is there any way to do it?
Upvotes: 2
Views: 853
Reputation: 2266
On Windows 7 and later you can use the Windows Web Services API
http://msdn.microsoft.com/en-us/library/dd430435(VS.85).aspx
which will work fine from a C++ application.
Martyn
Upvotes: 2