Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > b8e94ff8888af031d35e12eaefff151d > files > 16

lib64xr-devel-1.0-3mdv2011.0.x86_64.rpm

Multi-transport RPC client/server library
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Libxr is a library that allows for rapid implementation of RPC clients and
servers in C.

Libxr features:
  - Multiple RPC transports. (XML-RPC and JSON-RPC)
  - RPC interface description language (XDL)
  - Persistent connections over HTTP/1.1
  - Server "session" support for non-persistent connections
  - Multi-platform support (Linux, Windows, ...)
  - SSLv3/TLSv1 using OpenSSL
  - IPV6 as soon as OpenSSL 0.9.9 is released
  - VALA language support for client interfaces
  - Multiple interfaces per server

Libxr has two parts, library itself and RPC interface description language
compiler (XDL compiler). Thanks to the XDL compiler, you can create and
implement complex RPC interfaces in a very short time. Here is an obligatory
"Hello world!" example XDL file:

  namespace X;
  servlet Test {
    boolean sayHello()
    <%
      printf("Hello World!");
      return TRUE;
    %>
  }

Whenever you call XTest.sayHello() RPC method, "Hello World!" will be printed to
the server's standard output.

For more information see HOWTO tutorial, libxr API documentation or tests/
directory.