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
4
votes
2 answers

XMPP implementation of XEP-0198 in objective-C

Note: Server has already stream management installed and working. Here is my code: XMPPStreamManagementMemoryStorage *storage1=[[XMPPStreamManagementMemoryStorage alloc] init]; xmppStreamManagement=[[XMPPStreamManagement alloc]…
Chirag Lukhi
  • 1,528
  • 17
  • 41
4
votes
1 answer

Cannot add members to existing room using openfire REST API

openfire 4.0.2 https://github.com/igniterealtime/REST-API-Client I am using the REST API Client to add a user to a room. Looking at the debug information it seems to return success 201. However, the user is not added to the chat room. 1 > POST…
ant2009
  • 27,094
  • 154
  • 411
  • 609
4
votes
0 answers

How do we customize tsung scripts for sending message in Openfire server?

Tsung snippet: It Generates below request,
udhaya
  • 73
  • 6
4
votes
1 answer

Fetch XMPP Open Fire Private Chat History and Message Archiving in Android

I am working on XMPP Open fire i was able to send and receive the Message in Private Chat and also in Room and also able to get Chat History Of Room Chat but not able to get Message History Of Private Chat and i also wants to achieve the Message…
Rajan Bhavsar
  • 1,977
  • 11
  • 25
4
votes
1 answer

Join an existing XMPP MUC Room with Owner Privileges using iOS Openfire and Robbie Hanson library

I am joining an existing MUC room using the next code: XMPPRoomMemoryStorage *roomStorage = [[XMPPRoomMemoryStorage alloc] init]; XMPPJID *roomJID = [XMPPJID jidWithString:@"newRoom5@conference.administrator"]; xmppRoom = [[XMPPRoom alloc]…
Laur Stefan
  • 1,519
  • 5
  • 23
  • 50
4
votes
0 answers

Delay in message archiving for Monitoring Service plugin

I am using the Monitoring service plugin to save one-to-one chats in the db (mysql). But I observe that there is some delay of about 1 minute between the time when message is received and when it gets stored in the db. In case if user refreshes the…
Govan
  • 7,751
  • 5
  • 26
  • 42
4
votes
1 answer

Openfire http prebinding with JAXL

I am trying to implement converse.js in my project to use Openfire chat and am prebinding the user using JAXL. Its working fine on my cloud(VPS) server. when am try to publish the same code on my client server its not working. and getting the same…
4
votes
2 answers

service unavailable response from server while sending custom IQ

I am trying to send custom information with IQ in asmack from android. So I am using below code to send the custom IQ message. public void onClick(View arg0) { CustomIQ req = new CustomIQ(); req.myData="Hello world"; …
kavuru
  • 379
  • 3
  • 4
  • 14
4
votes
1 answer

smack 4.1 Openfire Sample example

I have been using smack 3.4 for my web portal. Also used asmack 3.4 for my android app (aSmack development stopped some years back but there where some unofficial jars that i used. Faced issues with file upload and group chat with this it so want to…
razor_4040
  • 73
  • 1
  • 4
4
votes
0 answers

How to remove self from memberlist in XMPP

In Openfire using XMPP, when I create a persistent room, users can add if they are invited. When I send an invite to a user for room joining it will join using:
Mohsin Patel
  • 226
  • 1
  • 15
4
votes
0 answers

iOS Audio/Video Conference using open fire server

I have successfully implemented one-one chat, group creation and group chat using XMPP framework in iOS and open fire server. Now i want implement audio and video chat using open fire server, but i don't have any solution how to proceed. For Android…
Dev_iOS
  • 41
  • 1
4
votes
1 answer

ConverseJS and OpenFire

I'm trying to connect converesejs example to an openfire server which is istalled on my localhost, but the connection can not be estableshed (I don't know why). However I can connect to openfire server with Psi. I think that the problem is with…
user2071019
  • 53
  • 1
  • 3
  • 7
4
votes
2 answers

Retrieving offline messages using asmack

I'm new to asmack and openfire, looked a lot for a working answer to this but couldn't find it anywhere. How do I retrieve offline messages on Logging into my account on asmack? I've used the following code: …
user3498348
  • 41
  • 1
  • 2
4
votes
3 answers

Is there any option to disable group-chat message history on open-fire server?

I have been creating group chat application, while implementing group chat functionality I am facing problem, that when I every time join the room, open fire sends last two days messages. Here is post message which I get every time when I join…
Jatin Patel - JP
  • 3,725
  • 2
  • 21
  • 43
4
votes
1 answer

XMPPFramework - How to Create Message / Conversation Thread

I am working on the iOS chat client by using XMPPFramework ( https://github.com/robbiehanson/XMPPFramework ), can anyone please help me with the chat and message. I use Spark ( http://www.igniterealtime.org/projects/spark/index.jsp ) to test my iOS…
user1651520