Reputation: 147
I am developing a chat application based on XMPP/Jabber. How the stanzas in XMPP are implemented in an application?
Thanks in advance.
Upvotes: 1
Views: 1784
Reputation: 93
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
Upvotes: 0
Reputation: 626
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.
Upvotes: 5