The client program needs one argument: a word. The program prints a list of word definitions and synonyms.
The input to our stub compiler is a specification of the names of the SOAP methods (with optional namespaces) and the data structures given as C/C++ declarations. You can get this header file specification here.
To generate the sources, click here to use our SOAP Stub Compiler (sorry, this is not working yet: please get the compiler from the download page). This will produce a web page containing the C/C++ sources for:
soapStub.h soapH.h soapC.cpp soapClient.cpp soapServer.cppYou need to save these sources to your local drive under the file names as indicated.
Two files are not generated but are required to build your application: stdsoap2.h and stdsoap2.cpp. Save these files to your local drive too.
g++ -o glossary glossary.cpp soapC.cpp soapClient.cpp stdsoap2.cpp