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

Can not Join/Create more than 10 groups on XMPP server

I have installed ejabber2 on server. Connecting from android via Smack library. I am able to create and join 10 groups but can not create 11th group. If I leave one of the joined group then I can create new group and join it. But can not join the…
Karan Nagpal
  • 521
  • 1
  • 8
  • 19
0
votes
1 answer

XMPP: Readonly multi user chat

I want to create MUC, where only 1 user (owner/admin) can send messages. Other users should join chat without any invintations, but only in readonly mode. (something like news feed, parser will post news to the chat each 15 minutes, anyone can join…
Kevin
  • 546
  • 4
  • 17
0
votes
1 answer

Discover joined rooms in agsxmpp

I am developing a chat application in C# and .NET with agsxmpp. So far I have managed to do single chat and groupchat. But now I am facing a problem with retrieving the rooms which I have already joined as a owner or member. I have tried finding…
0
votes
1 answer

Can't get entry of persistent room in ofMucRoom table in c#.net using agsxmpp

I am developing chat application using agsxmpp in c#.net,currently i managed to create the persistent room on openfire server,whose entry is shown in openfire server.but the problem is i can't get the same entry of room in openfire mysql database…
0
votes
1 answer

Get room chat history on demand

From the xep-0045: http://xmpp.org/extensions/xep-0045.html#enter-history It seems that user can only get room history messages when he is joining the room. For example, user can get 20 messages when joining the room. But after joined the room,…
xhsoldier
  • 575
  • 6
  • 31
0
votes
2 answers

Smack - When to call MultiUserChat.Join(...)

I'm a bit confused and can't find the answer in the docs. I'm developing a simple chat app for Android. I've created a group (muc) and everything works, but do I have to keep calling join() everytime I open the app? I've noticed that it doesn't work…
Aviv Ben Shabat
  • 1,073
  • 2
  • 13
  • 33
0
votes
1 answer

Ejabberd muc_rooms and muc_registered tables are empty

I am using ejabberd and its configured to use mysql. Everything is working fine. The user registration, rosters and roster groups are written in mysql table. The problem is, even though i use mod_muc_odbc I dont see any entries in those…
Robin Rex
  • 210
  • 3
  • 10
0
votes
1 answer

XMPP create group not getting Response in iOS

I tried to create a new group using XMPP Framework in iOS using the following code as per given here NSString *nickName=[NSString stringWithFormat:@"%@.nickName@conference.server.hostname.in" ,newGroupName ]; XMPPRoomMemoryStorage * roomMemory =…
geet Sebastian
  • 677
  • 6
  • 12
0
votes
1 answer

XMPP MUC how to permanently join a room

I want the bot owner of the XMPP room to be persistently present, but I keep disappearing from the room and have to rejoin. What must I do to maintain my presence in a room? Is it configurable? I cannot find an answer in…
metalaureate
  • 7,572
  • 9
  • 54
  • 93
0
votes
1 answer

"No Response From Server." For MutliUserChat in android

I am trying to create a room for MultiUserChat in android. Here is my attempt: String mNickName = "7799963"; String mGroupChatName = "room@confrence.mytestserver.net"; // Room Name MultiUserChat mMultiUserChat; mMultiUserChat = new…
BST Kaal
  • 2,993
  • 6
  • 34
  • 52
-1
votes
1 answer

How to make a persistent group in ejabbered for MUC?

I am trying to make a persistent group in ejabbered for Multi user chat. I am able to join a group its created by pidgen and can send message to it as well but dont know how to create a persistent group using stanza. Any help will be appreciated.
Ali Akram
  • 199
  • 4
  • 12
-1
votes
1 answer

Unable to return group list in xmpp with asmack version asmack-android-8-4.0.6.jar

I am unable to get group list with asmack version asmack-android-8-4.0.6.jar from XMPP I tried all the possible methods to get group names from xmpp,I was able to get in Pidjin clinet but not able to get using asmack,here is the code am using to get…
kondal
  • 358
  • 1
  • 6
  • 22
1 2
3