chat

Unit Testing a Java Chat Application

I have developed a basic Chat application in Java. It consists of a server and multiple client. The server continually monitors for incoming messages and broadcasts them to all the clients. The client is made up of a Swing GUI with a text area (for messages sent by the server and other clients), a text field (to send Text messages) and a...

chat with website visitors

Hi there is there any software like Yahoo pingbox from Hotmail? ...

Simple tutorial to build a chat application in Flash?

Hi, I'm interested in building a chat application in Flash. Can anyone point me to a tutorial, or related documentation that might help me. I'm not sure where to begin. ...

How to Insert Smileys in PHP Code?

I have a Shoutout Box written in PHP language.It doesnt have Smileys Support. How Can I Insert Smiley Support in it? ...

Is there any free opensource (GNU GPL, LGPL etc) Comet Video Chat? (PHP)

Is there any free opensource (GNU GPL, LGPL etc) Comet Video Chat? (PHP) I want to integrate it into my own CMS I am creating. ...

Is there any way to make this JavaScript tab completion script more efficient?

This code is to be integrated into an AJAX Chat system to enable a tab auto-completion of user names: var usernames = new Array(); usernames[0] = "Saladin"; usernames[1] = "Jyllaby"; usernames[2] = "CadaverKindler"; usernames[3] = "qbsuperstar03"; var text = "Text and something else q"; // Start of the script to be imported var search...

How to pair users? (Like Omegle.com)

Hi, 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 connecting two users "randomly". What I'm doing right now is the following: When a user enters the website a session is assigned. There ...

How can I make my javascript chat polling script be more efficient?

For some reason this check for new chat messages causes a larger amount of browser (and to some extent server) load than I would expect. Anyone see any ways that I can make it more efficient, to lessen the load? // Begin the cycle of refreshing the mini chat after the standard delay. function startRefreshingMinichat(){ var secs = 3...

Recommendations on apache tuning for chat application

Hi, I have a chat application (xmpp / muc) that is going to be served by apache (we might change to nginx later but right now it's not easily done). If a user is in 2 rooms, he'll have between 2 and 4 active connections to the server (long-polling connections), so if we have 200 users per room and we have 5 rooms, what should the Server...

Tech necessary to build a live video chat site?

Hi, I'm looking to build a live video chat site. Before writing a project description, hiring a developer, etc., I'm doing a little research on what types of technologies / web development skills are necessary in order to build this type of site. The site will feature live video and audio for users to be able to chat with eachother, a...

How to make a chat application for web similar to gmail popup?

Hello, As you must have seen in gmail, a small popup appears to chat when you click on right bottom corner of your screen. Interestingly, this popup remains open and at the same place even when we navigate from one webpage to another. How can this be done? It doesn't look as though it's different page. Is it different page altogether? or...

How to start skype chat not call with link

You can put a value "skype:nick" into href attribute of a link and it works, but it fires a call. I would like to start a chat (text conversation). I know that "skype:" is a type of protocol, but maybe.. Is there any posibility? ...

Need direction in creating a voice chat application

I want to create a voice chat application as a part of a project. However, i am totally lacking direction regarding the programming language to use, the technologies involved. Can somebody please guide me as to how i should proceed ? Here are the features that i require : user to user voice chat ability to chat in conference (more th...

Video chat application : Which technology to choose ?

I have to undertake a project which is to make a video chat application. The video has to be streamed from one location and can be viewed by multiple people spread out over the globe. Performance is really an issue and a delay of more than 2-3 seconds is unacceptable. From what i gather, this can be done in Flex and also in JAVA. Any p...

Scalable chat site in python

Hey guys, I have an idea that I'd like to start implementing that at the crux of it, will basically be a chat website, and will need to support multiple rooms. Quite frankly, I'm not too sure where to begin with regards to setting up a very sturdy/scalable chat system in python (or another language if you guys believe it to be a better a...

Problems with Ajax Chat version .8.3

I am not sure why, but my Ajax Chatroom ever once in awhile (once time ever other day on average I'd say), displays an connection error 503. Now doing some digging apparently 503 is an error for exceeding max connections, and the typical fix is increasing your limit to something like 400 but my max connections is already set to 1500. T...

file() [function.file]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution

Hi, I got the following error when i get containts from file("http://www.otherdomain.com"). file() [function.file]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution The domain server is linux. How to resolve this problem. Please help me. Thanks, ...

Secure, customizeable, open-source chat engine on PHP/JavaScript for all popular browsers

Please recommend Secure, customizeable, open-source chat on PHP/JavaScript for all popular browsers. ...

How can I connect to facebook chat using .net code?

Can I or How can I connect to Facebook chat using .net (not web code. C# vb or any other) code? ...

Python - react to custom keyboard interrupt

Hello. I am writing python chatbot that displays output through console. Every half second it asks server for updates, and responds to message. In the console I can see chat log. This is sufficient in most cases, however, sometimes I want to interrupt normal workflow and write custom chat answer myself. I would love to be able to press ...