NAME

kasykserverxml - description of the Kasyk server info XML (<kasyk:server>)


DESCRIPTION

The Kasyk server info XML specifies the information that is returned by Kasyk server (kasykd) and Kasyk caching query server (kasykcqd) when invoked with the --info option. Internally, the server info XML is used to be able to restart and shutdown a running Kasyk (caching query) server.


<kasyk:server program="" id="" configuration="" location="" pid=""/>

The <kasyk:server> container has the following attributes:

program="fullpathtoprogram"
The program attribute specifies the full path to the Kasyk executable that created this server info XML.
id="identification"
The id attribute is optional: when specified, it indicates the value that was specified with the --id option.
configuration="indexdir|configfile"
The configuration attribute specifies the configuration that was used to start the server: this is the first parameter to both the Kasyk server (kasykd) and Kasyk caching query server (kasykcqd).
location="host:port"
The location attribute specifies the host and the port number on which the Kasyk (caching query) server is running.
pid="number"
The pid attribute contains the process id of the (main) process of the running Kasyk (caching query) server.

EXAMPLES

 <kasyk:server
  xmlns:kasyk="http://www.kasyk.org/1.0"
  program="kasykd"
  configuration="index/10index"
  location="127.0.0.1:3333"
  pid="29601"/>

An example from the test-suite, beautified for easier reading.


DTD

This is an attempt at a Document Type Definition for the Kasyk server info XML.

 <!DOCTYPE kasyk:server [
   <!ELEMENT kasyk:server EMPTY>
     <!ATTLIST kasyk:server program       CDATA #REQQUIRED,
                            id            CDATA #IMPLIED,
                            configuration CDATA #REQUIRED,
                            location      CDATA #REQUIRED,
                            pid           CDATA #REQUIRED>
 ]>

SEE ALSO

Kasyk home, Kasyk server (kasykd), Kasyk caching query server (kasykcqd).

See http://www.kasyk.nl/xml/kasykserverxml.html for the most up-to-date version of this information.


COPYRIGHT

Copyright © 2003 Dijkmat BV

This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Kasyk XML Information: Kasyk version 1.0.0, XML version http://www.kasyk.org/1.0, generated on Tue Nov 25 12:09:47 2003.