/usr/share/doc/libxr1-dev/html/intro.html is in libxr1-dev 1.0-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-2">
<title>libxr: Libxr Overview</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
<style>
h1, h2 {
text-align: left;
}
body {
margin-top: 6ex;
margin-bottom: 6ex;
}
#topbar {
position: fixed;
top: 0;
left: 0;
height: 3ex;
margin: 0;
padding: 1ex;
background-color: #e8eef2;
border-bottom: 1px solid #84B0C7;
width: 100%;
}
#topbar a {
font-size: 140%;
font-weight: bold;
color: darkred;
}
#topbar a:visited {
font-size: 140%;
font-weight: bold;
color: darkred;
}
#botbar {
position: fixed;
bottom: 0;
left: 0;
height: 3ex;
margin: 0;
padding: 1ex;
background-color: #e8eef2;
border-top: 1px solid #84B0C7;
width: 100%;
text-align: center;
}
hr {
border-top: 1px solid #84B0C7;
height: 1px;
}
</style>
</head><body>
<div id="topbar">
<a href="index.html">libxr</a> — <span>developer's documentation</span>
</div>
<!-- Generated by Doxygen 1.7.4 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">Libxr Overview </div> </div>
</div>
<div class="contents">
<div class="textblock"><p>Libxr is a library that allows for rapid implementation of RPC clients and servers in C.</p>
<h2><a class="anchor" id="features"></a>
Features</h2>
<ul>
<li>Multiple RPC transports. (XML-RPC and JSON-RPC)</li>
<li>RPC interface description language (XDL)</li>
<li>Persistent connections over HTTP/1.1</li>
<li>Server "session" support for non-persistent connections</li>
<li>Multi-platform support (Linux, Windows, ...)</li>
<li>SSLv3/TLSv1 using OpenSSL</li>
<li>IPV6 as soon as OpenSSL 0.9.9 is released</li>
<li>VALA language support for client interfaces</li>
<li>Multiple interfaces per server</li>
</ul>
<h2><a class="anchor" id="description"></a>
Description</h2>
<p>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 <a href="file:">file:</a></p>
<div class="fragment"><pre class="fragment"> <span class="keyword">namespace </span>X;
servlet Test {
<span class="keywordtype">boolean</span> sayHello()
<%
printf(<span class="stringliteral">"Hello World!"</span>);
<span class="keywordflow">return</span> TRUE;
%>
}
</pre></div><p>Whenever you call XTest.sayHello() RPC method, "Hello World!" will be printed to the server's standard output.</p>
<p>For more information see HOWTO tutorial, libxr API documentation or tests/ directory. </p>
</div></div>
<div id="botbar">
Documentation for <a style="color:darkred;" href="index.html">libxr</a>, Tue Jun 7 2011 17:44:21.
</div>
</body>
</html>
|