Questions tagged [muc]

An XMPP protocol extension for multi-user text chat, whereby multiple XMPP users can exchange messages in the context of a room or channel, similar to Internet Relay Chat (IRC).

The Multi User Chat XMPP extension is a presence-based oriented protocol defined by XEP-0045: Multi User Chat

43 questions
13
votes
4 answers

Persistent XMPP MUC (XEP-45), like WhatsApp groupchats

From the spec — 7.14 Exiting a Room In order to exit a multi-user chat room, an occupant sends a presence stanza of type "unavailable" to the it is currently using in the room. Example 80. Occupant Exits a Room
p0lAris
  • 4,430
  • 7
  • 37
  • 78
8
votes
1 answer

ejabberd MUC Archive Management Query Response

I'm using ejabberd 15.09 and have enabled archive management for every MUC in the server configuration like below: mod_mam: default: always mod_muc: ## host: "conference.@HOST@" access: muc access_create: muc_create …
BeinTouch
  • 107
  • 5
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,871
  • 3
  • 20
  • 49
4
votes
1 answer

How to create a chat room and add users into the room in openfire using PHP

I'm new to XMPP server. I want to make multi user chat application. I have installed Openfire and one to one chat is working properly but i'm not able create a conference(chat) room and add users into the room using PHP for multi user chat. Although…
Vaiju Sajjan
  • 75
  • 2
  • 9
4
votes
1 answer

how to retrieve group list a user is a member or admin in xmpp?

I am working on the chat application. I want to implement the group chat functionality in the web client. I have done things till group create and basic configuration and joining the group. I want to know if there is any extension developed Or any…
praveenraj
  • 714
  • 1
  • 8
  • 20
3
votes
1 answer

ejabberd MAM does not work for MUC

xep-0313 works for rosters, but does not work for room chat. I can get archive message for the rosters, but I can not get archive message for the room, why?
xhsoldier
  • 545
  • 4
  • 30
3
votes
0 answers

how to enable muc room core-data storage use it for offline accessing

I am working on group chat. I have successfully created group but could not storing group in core-data and not able to join that group also(Which is created already). how to parse fetched group list and parse on fetch from core-data classes....
BalKrishan Yadav
  • 457
  • 7
  • 20
3
votes
3 answers

Xmpp IOS multiuser chat . i didnot find a way to accept the invitation from group ? how i can accept the incomming invitation

When i send invitation this function is called but i can't understand what line of code should use for accept invitation*. am trying to create a multi user and multi groups invitation also called did received message function. -…
Shahbaz Ali
  • 109
  • 2
  • 6
2
votes
0 answers

In openfire XMPP, how to get notified when any room is created or destroyed?

I want to subscribe to conference.xmpp.myserver.com so that when any room is created or destroyed under conference.xmpp.myserver.com, I want my app to be notified. I am using XMPP API from iOS app. I know that I can subscribe to a room or get…
Balaji Krishnan
  • 101
  • 3
  • 5
2
votes
1 answer

How to get Openfire user presence in the chat room

I am using Openfire 3.10.2 XMPP server and Strophe library as client. I want to send messages via push notification to all the users in the chat room who did not join the chat room. How to get Openfire user presence in the chat room Is there any…
Sreenivas K
  • 79
  • 1
  • 9
2
votes
1 answer

How to fetch member list of a MUC room with a member using iOS XMPP Robbie Hanson library

I am using the XMPP library of Robby Hanson that is available on git and I am trying to implement MUC or group chat rooms. I am creating the room using one user, and then try to join, without invite with another user. The problem is, that if I try…
Laur Stefan
  • 1,871
  • 3
  • 20
  • 49
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
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
2 answers

Duplicate message received in XMPP Multi User Conference Room

When device1 is sending the message to the conference room "del@conference.jabber.org" the message is dispalyed in the chat list as well as a duplicated message is also displayed that is being send by the conference room "del@conference.jabber.org".…
Stolen Skull
  • 25
  • 1
  • 7
1
vote
1 answer

XMPP Muc Queries

I am using session resumption with large resumption time - 24 hours - http://xmpp.org/extensions/xep-0198.html . I have a doubt about muc, if I am in group and my client rejoin, do I need to leave and rejoin the group to get the new messages. For…
user2223032
  • 283
  • 1
  • 3
  • 11
1
2 3