Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > ba4e4dd7d8dab4a67407dfe1374e9686 > files > 9

ocaml-xmlrpc-light-devel-0.6.1-6.fc15.i686.rpm

XmlRpc Light, a small XmlRpc library based on Xml Light and Ocamlnet
====================================================================
 * 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,,
 * with the special exception on linking described in file LICENSE.
 *
 * 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

What is XmlRpc Light?
---------------------

XmlRpc-Light is an XmlRpc client and server library written in
OCaml. It is based on the the Xml-Light and Ocamlnet libraries.

Installation:
-------------

Debian binary:

    sudo apt-get install libxmlrpc-light-ocaml-dev    

Debian source:

    sudo apt-get install libxml-light-ocaml-dev libnethttpd-ocaml-dev
    make
    sudo make install

Fedora binary:

    sudo yum install ocaml-xmlrpc-light

For other environments, install xml-light and ocamlnet from sources available
at the following locations:

    Xml-Light: http://tech.motion-twin.com/xmllight.html
    Ocamlnet: http://projects.camlcity.org/projects/ocamlnet.html

And then run, as usual:

    make
    sudo make install

To uninstall XmlRpc-Light, which you will also need to do if you have
already installed a previous version, type:

    sudo make uninstall

Usage:
------

Client example:

    let rpc = new XmlRpc.client "http://localhost:8000" in
    let result = rpc#call "echo" [`String "hello!"] in
    print_endline (XmlRpc.dump result) ]}

Server example:

    let server = new XmlRpcServer.cgi () in
    server#register "demo.sayHello"
      (fun _ -> `String "Hello!");
    server#run () 

See the Ocamldoc-generated documentation in the "doc" directory for more
details.

Contributors:
-------------

Dave Benjamin (dave@ramenlabs.com)

License:
--------

See LICENSE