Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing a chat application based on XMPP/Jabber. How the stanzas in XMPP are implemented in an application?

Thanks in advance.

share|improve this question

2 Answers

up vote 4 down vote accepted

You'll just have to use an XMPP library for the language you're developing it in. You could generate the stanzas yourself, but that would be re-inventing the wheel.

There's a fairly comprehensive list of libraries here. For JavaScript I recommend Strophe.js. For Java the best is Smack and for Android the best is aSmack (a port of Smack). The most comprehensive and up-to-date for Python is SleekXMPP. The list goes on and on.

share|improve this answer

I recommend you too use any xmpp client libraries to implement because it helps you to code very faster, implementing the xmpp stanza's requires you to learn core of xmpp.

For all libraries you can visit link

For PHP library you can use JAXL

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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