Questions tagged [xmpp]

XMPP (Extensible Messaging and Presence Protocol) is an open, standard protocol for near-real-time exchange of XML-structured data.

XMPP (Extensible Messaging and Presence Protocol) is an open, standard protocol for near-real-time exchange of XML-structured data. The protocol is commonly used in instant messaging (IM) applications, but can be used to exchange any kind of data. It can also be leveraged for multi-user chat, collaboration, voice and video, message-oriented middleware, and many other applications.

XMPP works by initiating a bidirectional XML stream between two entities. The stream is used to transport XMPP stanzas, which are small, well-defined blocks of XML.

An overview of XMPP protocol is available at https://xmpp.org/about/technology-overview.html

There are various XMPP servers available to use. For more comprehensive lists of server, client implementations as well as XMPP libraries, visit xmpp.org.

5885 questions
2
votes
0 answers

Why openfire return redundant message archiving?

I am using these technologies: openfire version: 3.9.3 Monitoring Service plugin: 1.4.2 strophe.js: 1.1.3 I sent iq below for querying message archiving
gunblues
  • 419
  • 4
  • 6
2
votes
1 answer

ofMucConversationLog only persists body of groupchat stanzas

The ofMucConversationLog table is the persistence of MUC room messages that openfire uses to load MUC history from. This database table only stores the body portion of the groupchat stanza. I have extensions included in the groupchat message, these…
BST Kaal
  • 2,743
  • 5
  • 31
  • 51
2
votes
1 answer

How to configure XMPP to allow all logged in user to see each other and chat with each other?

I am new to XMPP. I am using Openfire server, and created a console client using Smack library. My usecase: All users anonymous, logged in (In future, website visitors) will be able to see other anonymous, logged-in users. And they can initiate a…
Nachiket
  • 5,421
  • 6
  • 37
  • 47
2
votes
0 answers

XMPP : Openfire : MUC Room Set Room configuration from Server side

Read This First of all i want is to create a MUC room with some default setting.Here is what i have did. -created the service on openfire -set default room settings(like make room persistent,members only etc.) -Now created a muc room from android…
Nirav Tukadiya
  • 3,171
  • 1
  • 16
  • 35
2
votes
1 answer

Enabling XMPPMessageCarbons not working

I am developing a chat application using robbiehanson/XMPPFramework. I am trying to enable Message Carbons for which I am using XMPPMessageCarbons from XEP-0280, but I am neither receiving any response nor an error. Following is my…
Pooja Sangle
  • 301
  • 2
  • 10
2
votes
0 answers

openfire(3.9.3) messages not storing in mysql database

i m using xmpp (openfire 3.9.3 ) for real time messaging between mobile applications but m not able to get history so i installed monitoring services plugin and activated its chat and group chat archiving in settings but still m not get any message…
2
votes
0 answers

iOS XMPPFramework - Find resource of JID from presence, but presence not being received/sent?

I am creating a chat app on iOS using the XMPPFramework and finding an issue with sending and receiving friend requests. I find that I need to find/get a resource when creating a JID on XMPPFramework. But whenever I send or receive a friend request…
esh
  • 2,742
  • 5
  • 20
  • 37
2
votes
0 answers

How to invite new members to an existing XMPP MultiUserChat aSmack

I want to make a group chat where every user can invite new users. To achieve this I have granted owner privileges to each user. The below method executes successfully without errors but the new users doesn't get an…
Kishath
  • 3,985
  • 3
  • 15
  • 21
2
votes
3 answers

How to notify the user about received GTalk chats when the app is not running

I implemented a chat client using GTalk servers and (a)Smack library. So far so good. Now, what I can't wrap my head around is how to notify the user of received chats when the app is closed, the same way all other chat apps do. I was reading into…
kaqqao
  • 10,809
  • 4
  • 50
  • 101
2
votes
1 answer

how to properly implement org.jivesoftware.smack.ConnectionListener

I am developing a GCM Cloud Connection Server (XMPP). I am using the suggested Smack API 4.0.6 library. How should I implement each method defined by org.jivesoftware.smack.ConnectionListener void authenticated(XMPPConnection connection) void …
Hector
  • 2,024
  • 15
  • 69
  • 142
2
votes
1 answer

XMPP - Resource Binding usefulness

I'm developing an android chat client, I decided to use XMPP and I started studying from the official XMPP RFC. The 7th chapter is about Resource Binding. Now, for me it's clear the way that Resource Binding is technically realized but I really…
Roger 71
  • 121
  • 7
2
votes
1 answer

Connect Ejabberd with Msql

Am trying to connect Ejabberd server with mysql.I have done all the configuration.And when i try to login ejjaberd its not logging in,its showing following error: Ejabberd Log File: =ERROR REPORT==== 2014-12-18 10:20:52…
Vishnu
  • 306
  • 1
  • 3
  • 15
2
votes
1 answer

I want to disable retrieving Group chat (MUC) history while joining a group - Android

I am always receiving group chat history while joining the room. To be more specific, whenever I join a group, I am receiving the last one message(only one message) which I have sent to that group. I have tried the following methods to disable…
Saamzzz
  • 206
  • 1
  • 14
2
votes
1 answer

XMPPStream Connect seems to work, but delegate method xmppStreamDidConnect not being called, why?

so I have a class with the following interface: #import #import "XMPPStream.h" @interface SignInViewController : UIViewController @property (strong, nonatomic) IBOutlet UITextField *UserNameTextField; @property (strong, nonatomic)…
ChrisC
  • 822
  • 2
  • 10
  • 25
2
votes
1 answer

call to undefined function ejabberd_logger:info_msg

I was trying to log chat messages to mysql in Ejabberd 14.07 using mod_log_chat_mysql5 in Ubuntu. Ejabberd is already configured in such a way to store basic details in Mysql. That feature is working and I am able to see newly registered users,…
1 2 3
99
100