Tirupati Rao
Tirupati Rao

Reputation: 615

building a xmpp server

I want to write android chat based application. So intead of using gcm I want to extend the existing xmpp server. So i tried with xmpp node js server. But all the features are not implemented in that server .So i thought extending the nodejs xmpp server.

  1. Are they any better docs or tutorials to understand more about xmpp server.
  2. if not nodejs xmpp server, how can i extend jabber or any other xmpp server.

I googled a lot but I didn't find any docs related to extending a jabber-like server.

Upvotes: 1

Views: 1043

Answers (1)

Kenan Begić
Kenan Begić

Reputation: 1228

You can use Openfire server source code from Github:

https://github.com/igniterealtime/Openfire

You can build openfire source in IntelliJ if you are already familiar with Android Studio. Here is some insight:

https://discourse.igniterealtime.org/t/can-i-develop-openfire-using-ide-tool-intellij-idea/76503

Also you can open Openfire source code in Eclipse:

Setup Eclipse for OpenFire server

Upvotes: 1

Related Questions