Fixed bug #615: Document retrievalInfo facilities for Frontend Server.
[yaz-moved-to-github.git] / doc / gfs-virtual.xml
1 <!-- 
2    $Id: gfs-virtual.xml,v 1.8 2007-02-08 11:36:59 adam Exp $
3    Description of the virtual host mechanism in YAZ GFS
4    Included in both manual and man page for yaz-ztest
5 -->
6
7 <para>
8  The Virtual hosts mechanism allows a YAZ frontend server to
9  support multiple backends. A backend is selected on the basis of
10  the TCP/IP binding (port+listening adddress) and/or the virtual host.
11 </para>
12 <para>
13  A backend can be configured to execute in a particular working
14  directory. Or the YAZ frontend may perform CQL to RPN conversion, thus
15  allowing traditional Z39.50 backends to be offered as a SRW/SRU
16  service. SRW/SRU Explain information for a particular backend may also
17  be specified.
18 </para>
19 <para>
20  For the HTTP protocol, the virtual host is specified in the Host header.
21  For the Z39.50 protocol, the virtual host is specified as in the
22  Initialize Request in the OtherInfo, OID 1.2.840.10003.10.1000.81.1.
23 </para>
24 <note>
25  <para>
26   Not all Z39.50 clients allows the VHOST information to be set.
27   For those the selection of the backend must rely on the
28   TCP/IP information alone (port and address).
29  </para>
30 </note>
31 <para>
32  The YAZ frontend server uses XML to describe the backend
33  configurations. Command-line option <literal>-f</literal> 
34  specifies filename of the XML configuration.
35 </para>
36 <para>
37  The configuration uses the root element <literal>yazgfs</literal>.
38  This element includes a list of <literal>listen</literal> elements,
39  followed by one or more <literal>server</literal> elements.
40 </para>
41 <para>
42  The <literal>listen</literal> describes listener (transport end point),
43  such as TCP/IP, Unix file socket or SSL server. Content for 
44  a listener:
45  <variablelist>
46   <varlistentry><term>CDATA (required)</term>
47    <listitem>
48     <para>
49      The CDATA for the <literal>listen</literal> element holds the
50      listener string, such as <literal>tcp:@:210</literal>, 
51      <literal>tcp:server1:2100</literal>,
52      etc.
53     </para>
54    </listitem>
55   </varlistentry>
56   <varlistentry><term>attribute <literal>id</literal> (optional)</term>
57     <listitem>
58      <para>
59       identifier for this listener. This may be referred to from
60       server sections.
61      </para>
62     </listitem>
63    </varlistentry>
64  </variablelist>
65  <note>
66   <para>
67    We expect more information to be added for the listen section in
68    a future version, such as CERT file for SSL servers.
69   </para>
70  </note>
71 </para>
72 <para>
73  The <literal>server</literal> describes a server and the parameters
74  for this server type. Content for a server:
75  <variablelist>
76   <varlistentry><term>attribute <literal>id</literal> (optional)</term>
77    <listitem>
78     <para>
79      Identifier for this server. Currently not used for anything,
80      but it might be for logging purposes.
81    </para>
82    </listitem>
83   </varlistentry>
84
85   <varlistentry><term>attribute <literal>listenref</literal> (optional)</term>
86    <listitem>
87     <para>
88      Specifies listener for this server. If this attribute is not
89      given, the server is accessible from all listener. In order
90      for the server to be used for real, howeever, the virtual host
91      must match (if specified in the configuration).
92     </para>
93    </listitem>
94   </varlistentry>
95
96   <varlistentry><term>element <literal>config</literal> (optional)</term>
97    <listitem>
98     <para>
99      Specifies the server configuration. This is equivalent
100      to the config specified using command line option
101      <literal>-c</literal>.
102     </para>
103    </listitem>
104   </varlistentry>
105
106   <varlistentry><term>element <literal>directory</literal> (optional)</term>
107    <listitem>
108     <para>
109      Specifies a working directory for this backend server. If
110      specifid, the YAZ fronend changes current working directory
111      to this directory whenever a backend of this type is
112      started (backend handler bend_start), stopped (backend handler hand_stop)
113      and initialized (bend_init).
114     </para>
115    </listitem>
116   </varlistentry>
117
118   <varlistentry><term>element <literal>host</literal> (optional)</term>
119    <listitem>
120     <para>
121      Specifies the virtual host for this server. If this is specified
122      a client <emphasis>must</emphasis> specify this host string in
123      order to use this backend.
124     </para>
125    </listitem>
126   </varlistentry>
127
128   <varlistentry><term>element <literal>cql2rpn</literal> (optional)</term>
129    <listitem>
130     <para>
131      Specifies a filename that includes CQL to RPN conversion for this
132      backend server. See &reference-tools-cql-map;
133      If given, the backend server will only "see" a Type-1/RPN query. 
134     </para>
135    </listitem>
136   </varlistentry>
137
138   <varlistentry><term>element <literal>stylesheet</literal> (optional)</term>
139    <listitem>
140     <para>
141      Specifies the stylesheet reference to be part of SRU HTTP responses
142      when the client does not specify one. If neither this is given, nor
143      the client specifies one, no stylesheet reference is part of the
144      SRU HTTP response.
145     </para>
146    </listitem>
147   </varlistentry>
148    
149   <varlistentry><term>element <literal>docpath</literal> (optional)</term>
150    <listitem>
151     <para>
152      Specifies a path for local file access using HTTP. All URLs with
153      a leading prefix (/ exluded) that matches the value of docpath
154      are used for file access. For example, if the server is to offer
155      access in directory <literal>xsl</literal>, the docpath would be
156      <literal>xsl</literal> and all URLs of the form
157      <literal>http://host/exl</literal> will result in a local file access.
158     </para>
159    </listitem>
160   </varlistentry>
161    
162   <varlistentry><term>element <literal>explain</literal> (optional)</term>
163    <listitem>
164     <para>
165      Specifies SRW/SRU ZeeRex content for this server. Copied verbatim
166      to the client. As things are now, some of the Explain content
167      seeem redundant because host information, etc. is also stored
168      elsewhere.
169     </para>
170    </listitem>
171   </varlistentry>
172
173   <varlistentry><term>element <literal>maximumrecordsize</literal> (optional)</term>
174    <listitem>
175     <para>
176      Specifies maximum record size/message size, in bytes. This
177      value also servers as maximum size of <emphasis>incoming</emphasis>
178      packages (for Record Updates etc). It's the same value as that
179      given by the <literal>-k</literal> option.
180     </para>
181    </listitem>
182   </varlistentry>
183
184   <varlistentry><term>element <literal>retrievalinfo</literal> (optional)</term>
185    <listitem>
186     <para>
187      Enables the retrieval facility supporting conversions and
188      specifications of record formats/types.
189      See <xref linkend="tools.retrieval"/> for
190      more information.
191     </para>
192    </listitem>
193   </varlistentry>
194    
195  </variablelist>
196 </para>
197  
198 <para>
199  The XML below configures a server that accepts connections from
200  two ports, TCP/IP port 9900 and a local UNIX file socket.
201  We name the TCP/IP server <literal>public</literal> and the
202  other server <literal>internal</literal>.
203  </para>
204  <screen>
205   <![CDATA[
206  <yazgfs>
207   <listen id="public">tcp:@:9900</listen>
208   <listen id="internal">unix:/var/tmp/socket</listen>
209   <server id="server1">
210     <host>server1.mydomain</host>
211     <directory>/var/www/s1</directory>
212     <config>config.cfg</config>
213   </server>
214   <server id="server2">
215     <host>server2.mydomain</host>
216     <directory>/var/www/s2</directory>
217     <config>config.cfg</config>
218     <cql2rpn>../etc/pqf.properties</cql2rpn>
219     <explain xmlns="http://explain.z3950.org/dtd/2.0/">
220       <serverInfo>
221         <host>server2.mydomain</host>
222         <port>9900</port>
223         <database>a</database>
224       </serverInfo>
225     </explain>
226   </server>
227   <server id="server3" listenref="internal">
228     <directory>/var/www/s3</directory>
229     <config>config.cfg</config>
230   </server>
231  </yazgfs>
232 ]]>
233  </screen>
234 <para>
235  There are three configured backend servers. The first two
236  servers, <literal>"server1"</literal> and <literal>"server2"</literal>,
237  can be reached by both listener addresses - since
238  no <literal>listenref</literal> attribute is specified.
239  In order to distinguish between the two a virtual host has
240  been specified for each of server in the <literal>host</literal>
241  elements.
242 </para>
243 <para>
244  For <literal>"server2"</literal> elements for CQL to RPN conversion
245  is supported and explain information has been added (a short one here
246  to keep the example small).
247 </para>
248 <para>
249  The third server, <literal>"server3"</literal> can only be reached
250  via listener <literal>"internal"</literal>.
251 </para>
252
253 <!-- Keep this comment at the end of the file
254 Local variables:
255 mode: sgml
256 sgml-omittag:t
257 sgml-shorttag:t
258 sgml-minimize-attributes:nil
259 sgml-always-quote-attributes:t
260 sgml-indent-step:1
261 sgml-indent-data:t
262 sgml-parent-document: "yaz.xml"
263 sgml-local-catalogs: nil
264 sgml-namecase-general:t
265 End:
266 -->