Questions tagged [openfire]

Openfire is a XMPP (Jabber) server written in Java. It has facility for developers to create plugins that can extend the server's functionality.

Openfire is a real time collaboration (RTC) server licensed under the Open Source GPL. It uses the only widely adopted open protocol for instant messaging, XMPP (also called Jabber). Openfire was once known as Wildfire and includes a number of plugins that integrate with other communications platforms, including commercial offerings from Jive Software

Ignite Realtime Openfire

Openfire JavaDocs

1509 questions
-1
votes
1 answer

How android application work with 3G/GPRS/EDGE

I developed an android app to receive a location and then send a message to collect at a MySQL server via XMPP protocol. I want to know a differences between using WiFi and 3G/GPRS/EDGE. If I use WiFi, it can connect to server directly, right? But…
Yoo
  • 1,421
  • 8
  • 20
  • 36
-1
votes
1 answer

How to calculate openfire conference room chat messages data

I have developed the Chat application using Openfire XMPP server, I would like to know the data consumption for storing the messages in the database for conference chat room.
Sreenivas K
  • 109
  • 1
  • 10
-1
votes
1 answer

Create user group using REST API in android

I am unable to create user group. I have already tried using roster but get failure to create user group. I have also tried rest api example taking from git hub but getting error "MessageBodyWriter not found for media type=application/xml,…
-1
votes
1 answer

openfire - Chat Application using smack

I am creating the chat application using smack library. Issue was i am not able to connect in openfire. It showing exception D/SMACK: SENT (0):
Twinkle
  • 65
  • 8
-1
votes
1 answer

Android Chat Application using Openfire server and XMPP (SMACK) client

So far, I have learnt that I need a Chat Server(Openfire) and a XMPP client with Smack Libraries to communicate with the server.So, Installed and configured Openfire. Now for the client part, I am really confused how to get start with. I need a…
Androwed
  • 443
  • 5
  • 10
-1
votes
1 answer

How to access access IQTypeFilter which has private access modifier in android asmack library?

I am developing chatting app using asmack. I need to filter incoming IQ . I am using below code. PacketFilter filter = new IQTypeFilter(IQ.Type.SET); // or IQ.Type.GET etc. according to what you like to filter. connection.addPacketListener(new…
-1
votes
1 answer

Cant update ui in on presence changed method in smack android

I am creating an android application using smack and openfire in android.I have used a listener for user presences changes.. Below is my code.. toolbar_status=(TextView)findViewById(R.id.toolbar_status) ; roster.addRosterListener(new…
Mohit Gaur
  • 355
  • 1
  • 3
  • 22
-1
votes
1 answer

Need guidance to start working on Openfire through strophe

My objective is to get communication started on openfire through strophe. But have a few questions like: What is the language that strophe will be written in? How and where are the connections written? Just some basic guidance or a good link to a…
Mohsin Sheikh Khalid
  • 3,914
  • 5
  • 20
  • 22
-1
votes
1 answer

How did whatsapp handling special characters, unicode and emoji's

I am using openfire for messaging application every thing is working fine. I need to know how whatsapp handling special characters, uni-codes and emoji's combined client and server side.
RanjithReddy
  • 47
  • 2
  • 7
-1
votes
1 answer

Create a new account Smack

can somebody explain me how to create an account and log into it(I'm talking about creating account in Openfire)? We need to log into someone's account and then create a new one but how to log into that new one? I don't have any idea how to do this.…
Steve
  • 81
  • 2
  • 10
-1
votes
1 answer

XMPP - Sign up a new user

I'm working with Openfire and XMPP. My problem is: whenever I want to sign someone up I need to log into Openfire, like this. connection.login(Username, Password); AccountManager accountManager = AccountManager.getInstance(connection); …
Steve
  • 81
  • 2
  • 10
-1
votes
1 answer

Where to find older version of REST API plugin for openfire version 3.9 (XMPP Chat)

How to install rest api on open-fire server version 3.9? we have a pre implemented application on open-fire 3.9. Now we want to update the functionality with rest api. But rest api required open-fire version 4.0+. So how is it possible? if any one…
-1
votes
1 answer

Create MUC group like whatsapp Android

I can creating and joining MUC rooms. But user disconnects from the Openfire server, he is removed from the group on the server side. How can i similar to what Whatsapp does, i.e. even if the user goes offline, he is still part of the MUC room…
Alper Ay
  • 1
  • 1
-1
votes
3 answers

The following addresses failed: '127.0.0.1:5222' openfire/ejabberd smack

I'm trying to connect to openfire/ejabberd(I have both of them configured and tested for connection with strophe.js) on localhost using smack. This is what I've tried: Log.d(TAG, "Connecting to server " + mServiceName); …
Bogdan Daniel
  • 2,689
  • 11
  • 43
  • 76
-1
votes
1 answer

Cannot Make Login Work in Smack and Openfire

I have been following this tutorial I found on GitHub to try and make a connection to an OpenFire server. I have used spark before and am now trying to use Smack api to create a simple android app to use on the go. I have followed a few tutorials…