I have done this. thanks.
Now when I try to compile the test program I get this error. any idea what is this??
$XAQBtupWpkZ_ybx._base64Chars /home/xmlrpc++/src/SunWS_cache/CC_obj_C/CNJgXqt0hz8spCMNlV7N.o
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have not tried the Sun C++ (SunPRO or whatever they call it nowadays), so I don't know if they support anything close to standard C++, but from the looks of that I would guess not.
I recommend using g++ if possible. If not you could try #ifdef'ing out the spots in XmlRpcValue.cpp that reference the base64 implementation (that is most template-heavy code in the library & causes the most compatibility issues). But then you will not have support for the base64 data type.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there any api documentation available for this. some sample source code etc..
There is a FAQ at http://xmlrpcpp.sourceforge.net/faq.html
but for examples you should consult the files in the test directory of the distribution:
TestValues.cpp: demonstrates the use of the XmlRpcValue type.
HelloClient.cpp, HelloServer.cpp: a simple distributed Hello World-type example.
Validator.cpp: a more complex server example, based on the http://validator.xmlrpc.com test suite.
I have done this. thanks.
Now when I try to compile the test program I get this error. any idea what is this??
$XAQBtupWpkZ_ybx._base64Chars /home/xmlrpc++/src/SunWS_cache/CC_obj_C/CNJgXqt0hz8spCMNlV7N.o
Is that an error message?
I have not tried the Sun C++ (SunPRO or whatever they call it nowadays), so I don't know if they support anything close to standard C++, but from the looks of that I would guess not.
I recommend using g++ if possible. If not you could try #ifdef'ing out the spots in XmlRpcValue.cpp that reference the base64 implementation (that is most template-heavy code in the library & causes the most compatibility issues). But then you will not have support for the base64 data type.
There is now some API documentation available on the project home page: http://xmlrpcpp.sourceforge.net/