Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use ejabberd in android? [closed]

I want to use jabberd in android app. I have installed ejabberd server but ejabberd client is not working. Which one is the best ejabberd client?

like image 597
user847470 Avatar asked Jul 28 '11 06:07

user847470


1 Answers

ejabberd is strictly an XMPP / Jabber server implementation. There is no such thing as an "ejabberd client". To interface with ejabberd, one can use any XMPP / Jabber client. Examples include Psi, Pidgin, and so on.

You seem to be a bit confused about the whole idea of XMPP / Jabber. If you have an interest in it, I highly recommend reading XMPP: The Definitive Guide in order to fully understand the concepts behind it, how to leverage it, and even how to implement your own client. In the book they happen to use Python with SleekXMPP for their example implementations, but there are many libraries for many languages out there.

Here are a few decently comprehensive lists of XMPP clients and XMPP libraries.

EDIT: I skipped over the fact that you'll be using Android. You can either use aSmack for a native Android app or implement a webapp using JavaScript with Strophe.js.

like image 142
mattkelly Avatar answered Sep 23 '22 19:09

mattkelly