C/C++
wscpp.txt
Associated article: Web Services & C++
Tags: Web Development C/C++
Published source code accompanying the article Peter Lacey in which he shows how to develop SOAP services and clients in C++ using the WASP Server for C++ from Systinet.
Web Services & C++
by Peter Lacey
Listing One
interface Planet {
String getPlanet(int pos);
}
Listing Two
#include "PlanetImpl.h"
class PlanetService : public PlanetImpl {
public:
virtual WASP_VString getPlanet(int pos);
};
Listing Three
#include "PlanetService.h"
...


