Questions tagged [chatroom]

Chatrooms are places where multiple users can communicate online and talk about a specific topic.

Chatrooms are places where multiple users can communicate online and talk about a specific topic. Chatrooms usually provide the option to send messages that all users (from the chatroom) will see, as well as see a list of all users and their status. Often the chatrooms provide the option for personal messages - you can select a user from the chatroom user list, and send a message only to that user.

227 questions
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
3
votes
2 answers

socket.io multiple chats on one page

I want to implement multiple chat windows on one page (like facebook for e.g.). Currently using "rooms", simplified code: [client] socket.emit('join', 'room1'); socket.emit('join', 'room2'); [server] socket.on('join', function(room) { …
sl1p
  • 41
  • 6
3
votes
0 answers

is there any way to leave the group?

I am developing an application which require to login-logout from the app. In that case, when I login into the application, at the same time I will Join the Group(where i am a occupant of group). Now, I want to leave group. I have created one group…
Jatin Patel - JP
  • 3,725
  • 2
  • 21
  • 43
3
votes
1 answer

ClassCastException when creating MUC room for XMPP group chat using aSmack

I am using aSmack for creating chat application. When i am creating groupchat by using this aSmack it gives error. this is the code am using for creating GroupChat. MultiUserChat muc = new MultiUserChat(connection, "xyz@abc.com"); try { …
RajaReddy PolamReddy
  • 22,428
  • 19
  • 115
  • 166
2
votes
2 answers

Is it possible JIDs with only different resources joining same multi-user chat room

In xmpp, following 2 users could join multi-user chat(MUC) or subscribe to same pub-sub node? public@service.com/user1 public@service.com/user2
Shaheed ulHaq
  • 498
  • 5
  • 20
2
votes
4 answers

Unique colors for each user

In my web app I have a chatroom. I wish to have each user's name to be colored differently rather than having them all black. What is the best way to achieve this? Should I store the RGB/HEX code for each user as they sign up to my app and put that…
alamodey
  • 14,320
  • 24
  • 86
  • 112
2
votes
5 answers

HTML5 simple chatroom

What I would like to do is a simple HTML5 chatroom, nothing fancy, once someone says something it sends it out to everyone currently connected to the server and that's it. No storage, nothing complex. It would have to be flexible, though, my site…
user1123530
  • 561
  • 3
  • 7
  • 17
2
votes
2 answers

JTextPane or JEditorPane for a Chatroom

I have to make a chatroom like this one : The message displayed also have to show the smileys and everything myst be copy/pastable like in Skype. I don't know what to choose between the JEditor and JTextpane. I tried both I faced the following…
Vincent Roye
  • 2,751
  • 7
  • 33
  • 53
2
votes
1 answer

How to post a message to google chat room using C#? (**Error**: Request had insufficient authentication scopes)

Currently i am trying to send message from C# to Google chat Room ,tried Authentication using following code UserCredential credential; var jsonPath = ""; jsonPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory,…
2
votes
2 answers

Batch .txt reader

So, basically I want a Batch file to read a .txt. The problem is that the Batch file needs to update everytime a new line gets written to the .txt @echo off set "pc=%1" FOR /F "delims=:" %%A IN ('findstr /N .* "%pc%"') DO set "zeilen=%%A" type…
ErrorsOnly
  • 23
  • 2
2
votes
0 answers

How to send broadcast data to all clients in a muti-threaded socket server?

I am currently in the process of creating a mutli-threaded chat room in python, however I am having trouble broadcasting data to all of the clients. I am hoping to create a system where one clients sends data to the server, and the server broadcasts…
user9111666
2
votes
1 answer

What's the best UI Controls to use for a ChatRoom application?

I would like to create a simple chat room like GUI interface that will create an entry for each line spoken in the following format: Person1: Hello world! Person2: Hello there. Person3: What's up? Person1: not much Where Person 2&3 will be a blue…
Ducksauce
  • 25
  • 3
2
votes
2 answers

Free ASP.NET shoutbox/chat

I am searching for a simple and free ASP.NET C# shoutbox/chat application, so i can integrate it in a small gamming portal. The only important thing is that it should have some sort of "banned list", where the admin can ban and unban people. So far…
Tony
  • 2,473
  • 3
  • 23
  • 32
2
votes
1 answer

Allow select special characters

Hi I am using the htmlentities() PHP function for a chat room to prevent HTML being echo'd out into the chat. Basically I want to allow this '<3' which PHP will replace with the Heart emoticon but due to the '<' symbol, the htmlentities() function…
Julian
  • 657
  • 3
  • 9
  • 32
2
votes
0 answers

How to connect multiple chat room in xmpp in ios

I am using this code but my app hangs for some time and i also want to run this function in every 5 mins.Any code which i can add for stopping the hang the UI and run after 5 min. -(void)ConnectRoom { …
Balaji Cgt
  • 21
  • 3
1
2
3
15 16