« Previous - Version 16/30 (diff) - Next » - Current version
Adrian Georgescu, 03/02/2012 10:06 am


= SIP-XMPP Gateway Architecture =

<acronym title="DesignXMPP, DesignXMPP_analysis, DesignXMPP_arch, DesignXMPP_im, depth=2">TOC</acronym>

The architecture of the SIP-XMPP gateway can be modeled in two different ways:

  • Based on an XMPP component
  • Based on an XMPP server (using server-to-server communication)

These approaches are not mutually exclusive, they can both be implemented at the same time and decide which one to use with a configuration option to allow different deployment scenarios.

XMPP Component Based Architecture

Image(xmppgw-arch-component.png, 700px, center)

  • XMPP server (ejabberd for example)
  • XMPP server plugin (divert stanzas to offline users to a given component)
  • SIP Application server which is also a XMPP component
  • SIP proxy (registration, AAA and routing)
XMPP Server Based Architecture

Image(xmppgw-arch-server.png, 700px, center)

  • SIP Application server which is also a XMPP server
  • SIP proxy (registration, AAA and routing)
Chosen Architecture

After experimenting with both models the chosen model to be implemented first is the '''XMPP server based architecture'''. The component based approach could be added at a later time.

The server based architecture model has a number of advantages / disadvantages:

  • Advantages * Less network elements involved * Full control over XMPP routing since the server is customized * No need for developing plugins for any XMPP server
  • Disadvantages: * Inability to use an XMPP client in the local domain

The critical factor when making this choice is the fact that if a custom XMPP server is built all the routing logic can be customized without the need of running an extra XMPP server and writing a plugin for it. Thus, this approach is more sustainable over time.

The aforementioned disadvantage would also disappear if the chosen library implemented accepting XMPP client connections, which is likely to happen in the future.

xmppgw-arch-component.png (80.3 kB) , 03/07/2012 04:56 pm

xmppgw-arch-server.png (75.9 kB) , 03/07/2012 04:58 pm