leeand00
leeand00

Reputation: 26402

C++ Library for implementing a web services api over legacy code?

Does anyone know of any really good C++ Libraries for implementing a web services api over top of existing legacy code?

I've got two portions that are in need of it:

Let me know if you've had any luck in the past implementing something like this using the library.

Upvotes: 3

Views: 644

Answers (3)

Fabio Ceconello
Fabio Ceconello

Reputation: 16059

I used gSOAP in a project and it was quite straightforward. Compared to Axis/C, I found it easier to learn and use. I never used POCO, can't give you an opinion, but it's gaining popularity recently. This is the link for gSOAP

http://www.cs.fsu.edu/~engelen/soap.html

Upvotes: 1

Eclipse
Eclipse

Reputation: 45533

Microsoft has put out native code webservices API (WWSAPI) that looks pretty decent. I haven't had a chance to use it yet. We had originally ignored it, since it required Windows 7 or Server 2008, but they've finally released a runtime library for older OSs.

I would advise staying away from Microsoft's old SOAP SDK. For one, it's been deprecated; two, it's not terribly easy to distribute; and three, it's terrible to code for compared to the .NET offerings.

What we've done is written a bit of C++\CLI to interface our existing C++ codebase with .NETs webservice framework. This turned out to be remarkably easy. .NET will generate all the classes and boilerplate code you need based of of a WSDL file. Then you just write some C++\CLI code to handle the incoming data as managed classes and fill in some managed classes as responses.

Upvotes: 2

Chris K
Chris K

Reputation: 12359

You can use the Apache AXIS/C interface to build a web services interface. It has plugins for Apache and IIS (and I think FastCGI), and lets you talk web services to your legacy code.

Upvotes: 1

Related Questions