vote up 1 vote down star

I want to try developing an XMPP server component using XEP-0114: Jabber Component Protocol.

Which server do you recommend and why? I'm talking about ease of development, community support, documentation, examples, etc.

flag

1 Answer

vote up 1 vote down

That's a hard question to answer, because I doubt there are many developers involved in developing across multiple XMPP projects and languages.

I can throw out a few personal perceptions but... I could be off-base!

What you're really looking for is which libraries would be recommended for component development. All the servers support the component protocol, so all you really need is a socket connection to the server and some helper routines to make the repetitive stuff like message parsing easier.

Where the server might matter is if you need tighter integration.

For example if you want your component to scale the same way as Ejabberd then you'll probably want to use exmpp.

If you need to deploy your component alongside Openfire into Java only enterprises, then you'll probably want to use smack.

If you are familiar with Python and want to prototype quickly use Wokkel.

I don't think documentation is going to be great for any of the libraries (haven't looked at them all though!) but that shouldn't be a huge burden. All you really need a good book on how the XMPP protocol works and then some sample code from the library and it's fairly easy to move on from there.

link|flag
Ok, after researching a little, I understand that the language of the component doesn't need to be the same language of the server, since they interact via TCP (not some kind of shared lib). But still, there are some frameworks that help developing these components. For example, you suggested smack but this thread(igniterealtime.org/community/thread/…) left me with some doubts. – alves Jul 10 at 20:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.