From 922cb5559b9f2f97279fa24cc9c5862c8b666495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 8 Mar 2005 10:23:43 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r2603, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/iem/iemxmlrpc/; revision=2604 --- xmlrpc++/README.html | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 xmlrpc++/README.html (limited to 'xmlrpc++/README.html') diff --git a/xmlrpc++/README.html b/xmlrpc++/README.html new file mode 100644 index 0000000..fd8e7f8 --- /dev/null +++ b/xmlrpc++/README.html @@ -0,0 +1,109 @@ + + + + XmlRpc++ Library + + + + + + +

XmlRpc++ Library

+

This is version 0.7 of XmlRpc++, an implementation of the + XmlRpc protocol written in C++, based upon Shilad Sen's excellent + py-xmlrpc library. XmlRpc++ is designed to make it easy to incorporate + XmlRpc client and server support into C++ applications. Or use both client and + server objects in your app for easy peer-to-peer support. +

+

Features

+ +

 

+

Changes

+ +

+

 

+

Installation

+

+ There are VC++ 6 and VC++ .Net project files building on Windows. If you are + using VC++ 6, you should apply SP3 and the fixes at + http://www.dinkumware.com/vc_fixes.html. Be sure to set the appropriate + code generation switches. In particular, ensure that the runtime library + (single/multi-threaded, static library/DLL) used is the same for the XmlRpc++ + code and whatever application it will be linked to.

+

+ For Linux, Solaris, and other Unix-like platforms there is a GNU Makefile which + can be edited to suit your system. Specify your C++ compiler, compiler flags, + and your system's socket libraries. +

+

In the test directory there are various test programs that are built by default. + To verify that the library built correctly, you can start the HelloServer + example:
+

HelloServer 8000
+			
+ and the HelloClient example in another terminal window:
+
HelloClient localhost 8000
+			
+

+ You should see two Hello messages and a sum displayed (amongst a bunch of debug + output). You can also try the XML server validator program (eg, "Validator 80") + and then attempt to connect to it from http://validator.xmlrpc.com + (if you have access to the internet and are not behind a firewall etc). +

+

Author

+

Chris Morley +

+

Although no code was re-used, the design and structure of the library is based + upon the py-xmlrpc library implementation.
+ The base64 decoder/encoder is by Konstantin + Pilipchuk.

+

+

License

+

A full copy of the LGPL license is included in the file COPYING. The source code + is Copyright (c) 2002-2003 by Chris Morley. This library is free software; you + can redistribute it and/or modify it under the terms of the GNU Lesser General + Public License as published by the Free Software Foundation; either version 2.1 + of the License, or (at your option) any later version. This library is + distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + without even the implied warranty of MERCHANTABILITY or FITNESS FOR A + PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along + with this library; if not, write to the Free Software Foundation, Inc., 59 + Temple Place, Suite 330, Boston, MA 02111-1307 USA +

+ + -- cgit v1.2.1