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

Efficient Chatroom Backend?

I am currently trying to find the best way to write an IM chat application that is cross compatible with both iOS and android. The idea is that user registers to the app and is then randomly paired with other users within the application the chat is…
1303zu
  • 21
  • 1
2
votes
1 answer

Can I get away with this or is it just too crude and unpractical?

I spent the whole of last night searching for a free AspNet web chat control that I could simply drag into my website. Well the search was in vain as I could not find a control that matched my needs i.e List of users, 1 to 1 chat, Ability to kick…
The_AlienCoder
  • 577
  • 6
  • 19
2
votes
1 answer

Client/Server chatroom with multi-threaded server (TCP/IP)

I'm developing a multi-client / server application in java using TCP/IP. My server creates a new thread for each of the clientSockets (clientSocket = serverSocket.accept();). The problem seems to be in figuring out a way for all of the running…
user2000920
  • 35
  • 1
  • 7
2
votes
1 answer

How to have multiple clients connect to a server java

I coded a basic isnatnt messager program, but it only lets oone client connect to the server. What would I change in my code so it would accept multiple clients, not have them wait in a line. Client.java import java.io.*; import java.net.*; import…
user2371981
  • 31
  • 1
  • 1
  • 2
2
votes
3 answers

XMPP Room Invitation

In my chatting application I want to implement Group Chatting functionality. For the same I want to create rooms and send the invitations to my friends to join the room. Here is my code to join and invite the friend to room. To Create the…
Gaurav Arora
  • 8,282
  • 21
  • 88
  • 143
2
votes
1 answer

Timestamp off in sql database for PHP and Javascript Chat Room

Basically I have been trying to follow a tutorial to create a chatroom. Ajax Web Chat Tutorial I have it all done except the time is being displayed incorrectly and I can't figure out where to start. STEP 1. The chat displays the user's line right…
Kevin Schaeken
  • 161
  • 1
  • 7
2
votes
0 answers

Connect Exception with Java Chat Room

I have created a chat room using Java. When I run it on just one computer, which isn't necessarily chatting, but testing rather, it runs fine. However, when I run it on a second computer, the program connects but when the second computer user sends…
Bl H
  • 133
  • 4
  • 12
2
votes
3 answers

How to send message to a chatroom using xmpppy?

I've successfully sent message to individual user. How can I send message to a room? I'm trying the following code: cl.send(xmpp.Message('99999_myroom@chat.hipchat.com', 'test message', typ='groupchat')) Also, I'm sending this message without…
wasimbhalli
  • 5,122
  • 8
  • 45
  • 63
1
vote
2 answers

Long polling (pending request) for JSF

I need to implement long polling or pending request for a chatroom. I tried a4j:push, but it seems doesn't work like a real long polling approach (see the following discussion: https://community.jboss.org/message/16614). The question is: which…
golinko
  • 327
  • 2
  • 3
  • 14
1
vote
1 answer

Java Swing Chatroom in a JTextPane?

I am looking for good advises in order to make this chatroom : with Java Swing. I have bee trying all the java swing components for 3 days but I still don't know what to choose. The container will also have to insert JprogressBars for file…
Vincent Roye
  • 2,751
  • 7
  • 33
  • 53
1
vote
0 answers

Ejabberd contact list grouping and show contact list if its connected with parent entity

System has 2 type of Entities, EntityType1 EntityType2 Now system has for ex. 2 EntityType1 EntityType-1.1 - 5 Users - Mark wood EntityType-1.2 - 5 Users - Mark wood & 2 EntityType2 EntityType2.1 - 3 Users EntityType2.2 - 3 Users Now…
Pinank Lakhani
  • 1,109
  • 2
  • 11
  • 31
1
vote
0 answers

Creating a multi-room chat in C with socket programming

I'm developing a multi room chat for a University Project, using C. I managed to create a server, which listens to clients and everything works. But right now, what i made is a chat with a single room, and many clients can connect to it. I have to…
KarlKorr
  • 31
  • 4
1
vote
0 answers

How can I embed a public slack channel into a website

I am trying to embed a slack channel from an open source project's support slack channel (free account) into a website. Is this doable with some simple embed javascript? Is it doable with slack API? The website does not own the slack channel's slack…
anoopjohn
  • 518
  • 4
  • 18
1
vote
1 answer

Server creates room socket.io and specific url

I would like to create dynamic room by the server and personalize the URL like this: localhost:3000/path/path.php?roomId. I have a form for the user to enter their name, then they click a submit button "create a room" and they will enter a page with…
1
vote
2 answers

Why my messages are being displayed many times?

I made a chat room using electron. But when I send a message to the server and from there the message will be displayed to the users for some reason the message is being displayed multiple times. Example: I send -> "hello" the message will be…
user13782089
1 2
3
15 16