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

42 questions
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…
Harshit Bangar
  • 293
  • 1
  • 4
  • 11
1
vote
1 answer

XMPP Reserve nickname in MUC service

I am currently implementing an MUC(Members only) application for the mobile platform. I am able to get the MUC working and the mobile clients are able to communicate with one another. The problem i am trying to solve is that i would like an user to…
Mithun Raman
  • 309
  • 4
  • 13
1
vote
1 answer

XMPP Groupchat Bookmark implementation

I have read in XMPP that in case of XMPP rooms, once a user bookmarks the room , he will automatically rejoin the room on re login. But in my case bookmark is getting stored in server as when I query it back Im able to retrieve it. But rejoining is…
SIRAJ V K
  • 45
  • 5
1
vote
0 answers

Android How to Configure XMPP Conference - Chat room

I am developing one chat application , But it not work properly, giving different-differet error like 406 or 407 , So please advice me My following code for that is proper or not , First Login When Application Start : public void LoginWithUser()…
Joseph Mekwan
  • 1,082
  • 1
  • 15
  • 28
1
vote
2 answers

xmpp - how to get room chat history

I am using the iOS xmppframework. I want to get room chat history when needed. Such that there is a button, when click the button, 20 history messages will be received each time. If I have 100 history messages, I click the button 5 times, then I…
xhsoldier
  • 575
  • 6
  • 31
1
vote
0 answers

XMPP Web chat. Chache architecture

I am developing XMPP based web chat using stroph js via web sockets. I have 5-10 chats at the same time. user could swipe chates in runtime. So live history should be showed to user. There is some best practies about message storing. So 5-10 chats.…
Yevgen Kulik
  • 5,713
  • 2
  • 22
  • 44
1
vote
1 answer

strophe js MUC room

I have created room from desktop client. And want to send message and receive messages on this room using strophejs. I have already set muc plugin, but I don't see any documentation of it. 1) how to subscribe on messages in room 2) how to send…
Yevgen Kulik
  • 5,713
  • 2
  • 22
  • 44
1
vote
0 answers

didReceiveInvitation does not work ios xmpp after sending invitation to users

I am working on group chat in IOS using xmpp. I can create the group successfully but after i invite the users didReceiveInvitation method does not call on other device. Below is my code. - (void) createGroupOnServer:(NSString *)groupName…
sajjoo
  • 6,576
  • 20
  • 65
  • 86
0
votes
1 answer

MUC room is locked with default installation of tigase

I have installed tigase7.0.2 with basic configurations. Now i am performing MUC using installed server with following codes: For Creating Room MultiUserChatManager manager = MultiUserChatManager.getInstanceFor(connection); MultiUserChat muc =…
Naitik
  • 796
  • 11
  • 32
0
votes
2 answers

error while creating room in muc using xmpp

I am crating room using android application using smack library. Following are the code for create group chat(room) using muc: MultiUserChatManager manager = MultiUserChatManager.getInstanceFor(connection); muc =…
Naitik
  • 796
  • 11
  • 32
0
votes
1 answer

ejabberd Mnesia database backup

Does making an ejabberd binary backup of mnesia database from the admin panel will also back up archived messages stored in MUC archive and private chats archive? If not, how to back up archived messages?
BeinTouch
  • 107
  • 5
0
votes
1 answer

XMPP Duplicate message handling in MUC

Is it possible to add server timestamp in the messages sent by the ejabberd server ? This will help in synchronizing the Server and Client clock times. I am facing difficulties in trying to retrieve the message history in an MUC chat. Scenario: Lets…
Mithun Raman
  • 309
  • 4
  • 13
0
votes
1 answer

Getting MUC messages from ejabberd

I am building a chat application using ejabberd. I am using mod_mam from master repo. I am having 1-1 as well as MUC. I am not able to query the MUC messages from the archive and it always gives 0 results. I have verified that the messages are…
Vikash Agrawal
  • 101
  • 1
  • 9
0
votes
2 answers

XMPPFramework IOS - Implementing MUC

Referring to this I am implementing a group chat configuration. XMPPFramework - Implement Group Chat (MUC) However as participant and not moderator I am unable to get the members list. I have tried reading multiple stack answers asking to implement…
codelover
  • 1,113
  • 10
  • 28
0
votes
1 answer

permissions to show members list to members of group [using ejabberd,xmpp,muc]

I am working on a xmpp group chat. I am able to create group, chat invitation n all other things. when I try to get members list it shows list of members to group owner only, not to the group members. here is my muc access rules: {access, muc_admin,…
Anand
  • 217
  • 2
  • 10