Tagged Questions
Generic term for "Instant Messaging System". It can also represent a discussion that occurs in an Instant Messaging System.
32
votes
3answers
6k views
How is GMail Chat able to make AJAX requests without client interaction?
All HTTP responses require the client to initiate them, even those made using AJAX. But GMail's chat feature is able to receive messages from other users, even when I'm just sitting in my comfy ...
16
votes
10answers
10k views
How can I program a simple chat bot AI?
I want to build a bot that asks someone a few simple questions and branches based on the answer. I realize parsing meaning from the human responses will be challenging, but how do you setup the ...
13
votes
17answers
2k views
Best chat/IM tool for developers? [closed]
What is the best chat/IM application you have used and did it have any specific features that would be of use for development teams?
12
votes
3answers
5k views
Use HTTP Keep-Alive for server to communicate to client
Recently in an interview I was asked how I would approach an online chat client application. I went through the standard "polling" solution but was cut off because the interviewer was looking for the ...
11
votes
5answers
658 views
Developing Chat API like that of Stackoverflow
How to begin developing chat api, like the one stackoverflow uses? If it is open source, where can i find it, if not can anyone guide me how to build a similar chat api?
11
votes
2answers
5k views
Best python XMPP / Jabber client library? [closed]
What are your experiences with Python Jabber / XMPP client libraries?
What do you recommend?
10
votes
11answers
3k views
Ajax polling
In the project i am currently working on, we have the need to develop a web chat application, not a very complex chat, just a way to connect two people to talk about a very specific topic, we don't ...
9
votes
2answers
1k views
How to fully integrate XMPP on a web site with registered users
We have a social networking site where people have contacts and we want it to be integrated with XMPP. We currently use ejabberd XMPP server.
Here are my questions:
1) How to properly create ...
9
votes
1answer
643 views
out of this world Comet programming and a web-based chat
Current Project Setup
I've been working on a web-based chat, similar to Facebook chat. At the current state, I listen for incoming chats and check for new messages in an existing chat is by doing...
...
9
votes
4answers
17k views
Developing a Video Chat Application with high quality video streaming
I am working for a company where we are developing video chat support on an existing application. I have looked at various solutions for this like
Using Managed Direct show for video capture and ...
8
votes
1answer
148 views
What are the possible ways to authenticate user when websocket connection is used?
Example scenario: Web based multi-user chat application through websocket connection. How can I ensure (or guarantee) that each connection in this application belongs to certain authenticated user and ...
8
votes
1answer
545 views
implementing asp.net mvc chat full duplex
I want to create a Facebook/Gmail like chat me for my social network.
I'm looking for the best technique to achieve it.
I found several libraries, but I do not know what the most appropriate
The ...
7
votes
12answers
2k views
Live chat with PHP and jQuery. Where to store information? Mysql or file?
There are 1 on 1 live chat. Two solutions:
1) I store every message into database and with jQuery's help I check if there is a new message in database every second. Of course I use cache either. If ...
7
votes
4answers
1k views
How does in-browser chat work?
Just curious. How exactly does chatting in a browser work? Usually if a user goes to a web page, his/her webbrowser requests the page content. A server produces output and sends it to the user's ...
6
votes
3answers
212 views
How can I send strings between two computers? [closed]
Possible Duplicate:
Beginner for Delphi Network!
I'd like to learn how to make two machines communicate, sending and receiving simple strings. The machines might be on the same LAN--or not. ...
6
votes
1answer
109 views
Knowing when a user is looking at your site in the browser vs another tab/application [closed]
Possible Duplicate:
test if window has focus
A site I frequently use has an online chat function (a pop up window, very similar to facebook). When my browser is not on the tab for this ...
6
votes
4answers
2k views
Simple PHP long polling chat script, too simple?
Im working on a simple chat app, probably 10 to 20 users per room.
The Script that queries the database for new messages looks too simple for all the request it'll be getting.
Below is the block of ...
6
votes
1answer
3k views
6
votes
7answers
3k views
How can I implement live chat on website?
I am wondering how to implement a live chat on a web site using .NET (C#)
And whether it can be linked to your Windows Live Messenger somehow.
6
votes
8answers
3k views
Simple web “live chat” software (LAMP stack) that integrates with Jabber/Aim
I've looked for this a few times in the past, to no avail. I would like a simple php/ajax web chat interface, that, and this is the critical part, will interface with my IM client (Pidgin) ... via ...
6
votes
20answers
557 views
Do you chat online for work purposes?
I've worked with folks who are chatting online with their peers, constantly batting around ideas. I've also worked with folks who adamantly refuse and think it's a waste of time.
Are online live ...
5
votes
1answer
108 views
javamail: How do I tell gmail not to sign me into chat?
When I connect to gmail programmatically (using javamail), gmail also automagically signs me into chat.
How do I tell javamail to tell gmail not to sign me into chat too?
5
votes
1answer
631 views
XMPP/Jabber on Django (chat server)
I'm looking to write a real time chat server in Django using XMPP/Jabber protocol (with mobile clients). Django will handle the user profile and inbox (non-real time part) through HTTP while the real ...
5
votes
3answers
192 views
PHP Sockets is half-working
So, i have mIRC making a listen (bear with me on this one) on port 1235 and i tried to make a php script to connect to such port on my localhost server.
My localhost is a clean Apache+PHP with mIRC ...
5
votes
2answers
7k views
PHP Socket Server vs node.js: Web Chat
I want to program a HTTP WebChat using long-held HTTP requests (Comet), ajax and websockets (depending on the browser used). Userdatabase is in mysql. Chat is written in PHP except maybe the chat ...
5
votes
6answers
2k views
Chat application using django
If i devlop a chat application using django will it have some performance problem?
Can i do server push in django?
I want to have PM and room discussions as well.
5
votes
5answers
4k views
ASP.NET Chat with WCF
I'm looking to implement a chatroom interface for an ASP.NET page. I'm in the process of learning WCF and it seems that it is appropriate for a chat application. Before I get too involved into WCF I ...
5
votes
2answers
478 views
Ready-made forum, chat, and PM solutions for Django
On my Django site I would like users to communicate with each other in several ways:
Forum
Private messages
Chat with rooms and saved history
Could you suggest me ready solutions for this? ...
5
votes
3answers
222 views
Good IM/Chat solution for pasting code
We've got several distributed developers working together on a couple of projects. We've been using Skype to host chats with all the developers, and it works okay except for one thing:
It REALLY ...
5
votes
2answers
622 views
How to test chat application in Ruby on Rails?
What would be the best way to implement integration test for chat application?
The problem is that I don't know how to implement two user behavior without stubbing and mocking everything.
How ...
5
votes
2answers
732 views
Implementing chat system: where to store chat data?
i am implementing a chat system in asp.net, much like google chat and i use xmhttp to send and receive data, and i am using a single table to store all chat for all user.
i wanted to create global ...
5
votes
3answers
3k views
Comet & PHP: How to use Comet with a PHP Chat System?
I have to build a simple chat system in PHP using Comet.
I don't know what would be the best approach to this project.
What is the best technique (cross-browser would be nice) to use, and how to ...
5
votes
5answers
4k views
Server-side Push in Rails
I'd like to implement a scalable chatroom in rails using AJAX. I know from research that the only scalability happens with a server-side push.
My two questions are:
1) In a reasonably efficient ...
4
votes
1answer
90 views
How DIV scrolls in chat script?
I coded for a chat script and all the issue is with scrolling DIV layer. I downloaded few chat scripts and found the below after careful observation.
When ever a new line of chat is added, scroll bar ...
4
votes
1answer
105 views
problems with memo.lines.add
I am trying to make a chat application that will post a message into a memo in the form like this:
USERNAME-> Message
but it is posting to my memo like this:
USERNAME
Here is my code:
const
...
4
votes
1answer
105 views
how to get same xmpp connection from one activity to another?
i am new programmer.i would like to implement sample application for getting chat by using xmpp server.In this implementation i have created connection by using ConnectionConfiguration object as ...
4
votes
3answers
189 views
Android - Sockets vs Polling
As part of an Android app I'm developing there is a chat room feature. We have a server which can process the incoming messages and store the messages. Is it better to keep a socket connection open ...
4
votes
1answer
681 views
Blackberry: Emoticons in Chat Application
I want to make a chat application where the emoticons are necessary. I was trying to write my own TextBox to handle some unicode caracters and replace them with smiles and emoticons, but that was a ...
4
votes
2answers
937 views
What is the proper way to manage multiple chat rooms with socket.io?
What is the proper way to manage multiple chat rooms with socket.io?
So on the server there would be something like:
io.sockets.on('connection', function (socket) {
socket.on('message', function ...
4
votes
2answers
448 views
Using memcached as a database buffer for chat messages
I am playing around with building a chat application using PHP and CodeIgniter.
For this, I am implementing a cache 'buffer' with memcached to hold the most recent chat messages in memory, reducing ...
4
votes
2answers
1k views
XMPP web chat: how to resolve multiple tabs/windows?
We have a site and we developed a chat system for it using strophe.js library and ejabberd XMPP server. We use session attachment that was initiated with PHP (using an in-house library). What we do is ...
4
votes
1answer
345 views
Which service to embed a videochat easily on a website?
I'm working on a new website and I'd like to add a videochat feature. So I'm looking for services giving an API to do that easily.
Here is the list of features I need:
1-to-1 chat (a user can chat ...
4
votes
4answers
249 views
How to maintain chat data?
I have a curious question...
I wanted to know how to maintain chat data in a database.
I have been using a php-mysql application, that stores chat data of users in a database.
Now my question is ...
4
votes
4answers
3k views
Is there a free, open-source live chat support application that uses PHP and jQuery?
Most of the applications that I'm finding, inncluding LiveHelp and PHP Live Chat! feature terrible, un-commented, non-cross-browser compatible Javascript.
I'm looking for chat software that uses a ...
4
votes
1answer
1k views
How to pair users? (Like Omegle.com)
I'm trying to do an Omegle.com clone script, basically for learning purposes. I'm doing it in PHP/MySQL/AJAX.
I'm having problems finding two users and connecting them. The purpose of omegle is ...
4
votes
3answers
406 views
How can I asynchronously monitor a file in Perl?
I am wondering if it is possible, and if so how, one could create a perl script that constantly monitors a file/db, and then call a subroutine to perform text processing if the file is changed. I'm ...
4
votes
1answer
291 views
Good solutions for an video chat based service website
I'm looking to build a internet service website based on video chat. I need one that does the following:
• suggest two chat participants through IM, and they can choose to accept the chat request and ...
4
votes
2answers
986 views
How do I set a Jabber status with python-xmpp?
How do I set a GChat or jabber status via python? Right now I've got this:
import xmpp
new_status = "blah blah blah"
login = 'email'
pwd = 'password'
cnx = xmpp.Client('gmail.com')
...
4
votes
4answers
2k views
chat application: pubsubhubbub vs xmpp
I'm unsure on the best stack to build a chat application. Currently I'm thinking of two main options:
facebook tornado
cons: does not use the main chat protocol xmpp but pubsubhubbub
pros: i really ...
4
votes
1answer
1k views
A message queue model in Erlang(Comet chat)?
I am doing Comet chat with Erlang. I only use one connection (long-polling) for the message transportation. But, as you know, the long-polling connection can not be stay connected all the time. Every ...