ahmd0
ahmd0

Reputation: 17293

Is it possible to send/receive data to/from a SOAP web service from unmanaged C++/MFC code?

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

Answers (2)

Martyn Lovell
Martyn Lovell

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

pickypg
pickypg

Reputation: 22332

There are tools that can help you do it, such as gSOAP, which works basically as you would expect it too (similar to Java and .NET WSDL to code generators).

Upvotes: 2

Related Questions