Programming XMPP Server Components

From XMPP WIKI
Revision as of 18:50, 24 July 2010 by Neustradamus (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Jabber Server Components are distinguished into several groups. Following a description of each.

Loadable / shared modules

These components are loaded by the jabber server upon startup.

Executable components

These components are loaded and executed when a request for this component arrives at the server.

External components

These parts are external standalone applications which connect in most cases through a concurrent TCP/IP connection to a Jabber Server. These are the most common components. Whenever a request or a xmpp chunk for this component arrives at the server, the server uses the existing concurrent connection to forward the chunk to the component. The component in return may use the connection to send data through the server.

See XEP-0114: Jabber Component Protocol

Help/Guides for external component authors