Menu

Tree [r1037] / trunk / examples /
 History

HTTPS access


File Date Author Commit
 cpp 2007-07-21 giraffedata [r970] Add asynch_client example
 .cvsignore 2005-11-20 giraffedata [r515] Add inetd-type server -- ServerRunConn()
 Makefile 2006-09-24 giraffedata [r758] Make separate directory build work
 README 2005-04-14 giraffedata [r338] update to new xmlrpc_sample_add_server
 auth_client.c 2007-05-06 giraffedata [r892] cleanup
 gen_sample_add_xml.c 2007-05-06 giraffedata [r892] cleanup
 query-meerkat.c 2007-05-06 giraffedata [r892] cleanup
 synch_client.c 2007-05-06 giraffedata [r892] cleanup
 xmlrpc_asynch_client.c 2007-05-06 giraffedata [r892] cleanup
 xmlrpc_inetd_server.c 2006-10-30 giraffedata [r774] Dont' refer to struct sigaction on Windows
 xmlrpc_loop_server.c 2007-02-17 giraffedata [r828] Add AbyssInit/AbyssTerm
 xmlrpc_sample_add_client.c 2007-09-02 giraffedata [r999] cleanup
 xmlrpc_sample_add_server.c 2007-05-06 giraffedata [r892] cleanup
 xmlrpc_sample_add_server_cgi.c 2007-05-06 giraffedata [r892] cleanup
 xmlrpc_sample_add_server_w32httpsys.c 2005-04-18 giraffedata [r343] Move interface header files to 'include' direct...
 xmlrpc_server_validatee.c 2007-05-06 giraffedata [r892] cleanup
 xmlrpc_socket_server.c 2007-05-06 giraffedata [r892] cleanup

Read Me

This directory contains working examples of uses of XML-RPC-c.  There
are XML-RPC servers and XML-RPC clients that use the Xmlrpc-c libraries.

The simplest example is the 'query-meerkat' program, which contacts an
XML-RPC server that O'Reilly operates on the Internet called Meerkat.
Meerkat provides an RPC that returns a list of new articles that match
a specified search pattern.  Run 'query-meerkat' like this example:

  $ ./query-meerkat Linux

This responds with a list of new articles that contain the work "Linux",
according to O'reilly's Meerkat service.


The simplest server program is 'xmlrpc_sample_add_server'.  This
implements a single XML-RPC method called 'sample.add'.  All it does is
add two numbers and return the sum.  You can run such a server like
this:

  $ ./xmlrpc_sample_add_server 8080

The server this runs is based on the Abyss HTTP server.  file.  The
argument tell it to listen on TCP Port 8080 for RPCs.  It puts log
information in /tmp, so be sure to look there.

A client program that goes along with this server is
'xmlrpc_sample_add_client'.  All this client does is make an XML-RPC
request to Port 8080 of 'localhost' to add the numbers 5 and 7 and
print the result on Standard Output.

You can run such a client like this:

  $ ./xmlrpc_sample_add_client

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.