123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?xml version="1.0" encoding='ISO-8859-1'?>
- <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
- "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
- <!-- Include general documentation entities -->
- <!ENTITY % docentities SYSTEM "../../../docbook/entities.xml">
- %docentities;
- ]>
- <!-- Module User's Guide -->
- <chapter>
-
- <title>&adminguide;</title>
-
- <section>
- <title>Overview</title>
- <para>
- The modules is a XCAP client for &kamailio; that can be used by other modules.
- It fetches XCAP elements, either documents or part of them, by sending
- HTTP GET requests to an XCAP server. It also offers support for
- conditional queries. It uses the <emphasis>libcurl</emphasis> library as a
- client-side HTTP transfer library.
- </para>
- <para>
- The module offers a XCAP client interface with general functions that
- allow requesting for a specific element from a XCAP server.
- In addition to that it also offers the service of storing and updating
- the documents it receives. In this case only an initial
- request to the module is required - xcapGetNewDoc - which is like a
- request to the module to handle from that point on the referenced
- document so as to promise that the newest version will always be
- present in database.
- </para>
- <para>
- The update method is also configurable, either through periodical
- queries, applicable to any kind of XCAP server or with an management command
- that should be sent by the server upon an update.
- </para>
- <para>
- The module is currently used by the <quote>presence_xml</quote> module, if the
- 'integrated_xcap_server' parameter is not set.
- </para>
- </section>
- <section>
- <title>Dependencies</title>
- <section>
- <title>&kamailio; Modules</title>
- <para>
- The modules is not dependent of any &kamailio; module.
- </para>
- </section>
- <section>
- <title>External Libraries or Applications</title>
- <para>
- The following libraries or applications must be installed before running
- &kamailio; with this module loaded:
- <itemizedlist>
- <listitem>
- <para>
- <emphasis>libxml</emphasis>.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>libcurl</emphasis>.
- </para>
- </listitem>
- </itemizedlist>
- </para>
- </section>
- </section>
- <section>
- <title>Parameters</title>
- <section>
- <title><varname>db_url</varname>(str)</title>
- <para>
- The database url.
- </para>
- <para>
- <emphasis>Default value is <quote>&defaultdb;</quote>.
- </emphasis>
- </para>
- <example>
- <title>Set <varname>db_url</varname> parameter</title>
- <programlisting format="linespecific">
- ...
- modparam("xcap_client", "db_url", "&exampledb;")
- ...
- </programlisting>
- </example>
- </section>
- <section>
- <title><varname>xcap_table</varname>(str)</title>
- <para>
- The name of the db table where XCAP documents are stored.
- </para>
- <para>
- <emphasis>Default value is <quote>xcap</quote>.
- </emphasis>
- </para>
- <example>
- <title>Set <varname>xcap_table</varname> parameter</title>
- <programlisting format="linespecific">
- ...
- modparam("xcap_client", "xcap_table", "xcaps")
- ...
- </programlisting>
- </example>
- </section>
- <section>
- <title><varname>periodical_query</varname>(int)</title>
- <para>
- A flag to disable periodical query as an update method for
- the documents the module is responsible for. It could be
- disabled when the XCAP server is capable to send the exported
- management command when a change occurs or when another module in &kamailio;
- handles updates.
- </para>
- <para>
- To disable it set this parameter to 0.
- </para>
- <para>
- <emphasis>Default value is <quote>1</quote>.
- </emphasis>
- </para>
- <example>
- <title>Set <varname>periodical_query</varname> parameter</title>
- <programlisting format="linespecific">
- ...
- modparam("xcap_client", "periodical_query", 0)
- ...
- </programlisting>
- </example>
- </section>
- <section>
- <title><varname>query_period</varname>(int)</title>
- <para>
- Should be set if periodical query is not disabled.
- Represents the time interval the XCAP servers should be
- queried for an update.
- </para>
- <para>
- To disable it set this parameter to 0.
- </para>
- <para>
- <emphasis>Default value is <quote>100</quote>.
- </emphasis>
- </para>
- <example>
- <title>Set <varname>query_period</varname> parameter</title>
- <programlisting format="linespecific">
- ...
- modparam("xcap_client", "query_period", 50)
- ...
- </programlisting>
- </example>
- </section>
- </section>
- <section>
- <title>Functions</title>
- <para>
- None to be used in configuration file.
- </para>
- </section>
- <section>
- <title>Exported Management Functions</title>
- <section>
- <title>
- <function moreinfo="none">refreshXcapDoc</function>
- </title>
- <para>
- Management command that should be sent by an XCAP server when a
- stored document changes.
- </para>
- <para>
- Name: <emphasis>refreshXcapDoc</emphasis>
- </para>
- <para>Parameters:</para>
- <itemizedlist>
- <listitem>
- <para>document uri: the uri of the document</para>
- </listitem>
- <listitem>
- <para>xcap server port: the port of the xcap server</para>
- </listitem>
- </itemizedlist>
- <para>
- Management FIFO Command Format:
- </para>
- <programlisting format="linespecific">
- ...
- :refreshXcapDoc:fifo_reply
- /xcap-root/resource-lists/users/eyebeam/buddies-resource-list.xml
- 8000
- _empty_line_
- ...
- </programlisting>
- </section>
- </section>
- </chapter>
|