chat

Java Speech Example: Encode, Stream, Decode, Play

I have been trying to find an example of this that I could use for a couple years, I'm ashamed to admit. I would like to see a working, compileable example (most that I find online don't compile or don't actually work) of reading from the microphone, encoding the voice data in a speech-friendly encoding such as Speex, and streaming that ...

Smack api and Java

I am using Tapestry 5, Smack api 3.1.0. I have established a connection and am able to communicate with a user through the xmpp server but the replies i get are sent to the standard output as they come in: Chat chat = connection.getChatManager().createChat("[email protected]", new MessageListener() { public void processMessage(Chat c...

Video and Voice chat operability in Python

Hello! I'm trying to find resources on video and voice chat operability in Python... Does anybody know of some good resources or sample projects? Any help would really be appreciated! ...

Which form controls to use for a chatbox (.net)

Hi, as I am doing a small chat application in vb.net (windows form), I'm having problem for the design of my chatbox. I would like text messages to be selectable so user can copy(ctrl+v) it but not usernames which displays who sent the message. What form controls should I use in order to accomplish this and what properties to change from...

Implementing PHP chat in members site

I have a members site which I'd like to add chat to (LAMP on a dedicated box). It doesn't need to be too complex, but must use the already-logged-in members' usernames for chat. This is a bit of a side project for me, so I'd rather not write it from scratch if possible & an existing script or class would be ideal. I've done a bit of sea...

User Presence In a chat room (chat getting updated by simple polling)

We have implemented a simple chat room feature in Rails using Simple Ajax updates. Now in every chat room a message belongs to particular user. We want to show the list of users(something like user presence). Please suggest ways. We are not using Jabber,XMPP etc. The Chatroom model is: class ChatRoom < ActiveRecord::Base validates_p...

Jabber integration in ASP.NET

Hi, I'm looking for an AJAX-enabled web client for Jabber. I found some, but they look hard to integrate with ASP.NET. Some of them were not even tested in IE. I'm trying to make an Facebook-like chat client, any suggestion is welcomed? ...

Display database contents? PHP / MySQL

So I have a chatroom type of database where the text that a user inserts gets stored into a databse as their username in one field and their message in the other. I want to have my page output the database info, so that people can see each others messages. How do I do this? Also, is it possible to make a for loop that checks to see if ...

Stack overflow error when using JQuery/ASP.NET for simple ajax chat

Hello, I am trying to create a simple ajax chat using JQuery and ASP.NET. My code works like this: When the page loads it refreshes the 'chatbox' div with a request to the messages.aspx page, which handles getting new messages from the database and kicks off an auto refresh with the setTimeout(). Whenever the user clicks the send b...

Display images in TextBlock (WPF)

Hi, I'm working on a simple chat application. Currently the messages are binded to a custom-styled listbox like this (simplified XAML): <ListBox ItemsSource="{Binding MessageCollection}"> <ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Text}"/> </DataTemplate> </ListBox.ItemTemplate> ...

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 computer chair watching but not interacting with the browser. How did they do it? ...

Is it possible to implement voice chat in a browser without plugins?

CampFireNow has a voice chat over the browser. It seems that you do not need any plugins to install to get it working. This is a contrast to Gmail, where I needed to install an app. I would like to implement a similar feature for my application. Is there a way to do this without requiring a plugin? ...

Selecting a person to chat with in C#

Consider the case of a lan messenger where a number of people are online. I need to select a particular person to chat with. How must I go about doing so in C#? What I want is to select a particular person by clicking on his name.After that I whatever I type must be sent just as in the case of the IP Lanmessenger software(hoping u people...

Small Windows Form Chat application ideas?

I have a small application that I am building a Chat application into, so far I have the functionality to post messages! I don't need a login as there will only be a small number of users and I will use their windows username for identification. Has anyone done anything similiar? What else do I need to add? It doesn't need to be all si...

Advanced chat web-app

Hello, I am looking to implement something similar to facebook/gmail chat. I know they use comet & jabber as their technology. But am confused about a couple of things. Do i really need jabber? Can I instead use a simple mysql table with from, to, message, sent and recd? Are there any inefficiencies in using mysql? Is there any perfor...

PHP Jabber Stupid Question

Hello, Am not sure if what I am doing is absolutely correct. But here goes: User logins into chat via web-based interface User is informed of updates via Comet User enters details which goto a PHP file which further connects to a Jabber server Now the problem is that when the user wants to send a message, its simple, run php in whic...

Adobe Flash Peer-to-Peer Application

I am doing a meeting system that display documents (PDFs) for end-users using Adobe Flash AS3 and Adobe Air. as a requirement we need to develop some interactive tools between end-users alike chat, sending files, polls and such stuff, but I should do it based on peer-to-peer connection. (No client/server method is allowed due to cost and...

What is a good implementation of a peer to peer chat program with a server for assigning connections in c++?

I've been interested in creating a proof of concept chat program for a while using C++. I have given the idea a lot of thought and even wrote down the beginnings of how I would design the system, but I have hit a barrier in my thinking when it comes to the implementation. I want to know what an implementation of a peer to peer chat clie...

implementing a AJAX chat site

I want to implement a chat site with following features: Direct one-on-one chat with a randomly picked stranger If my conversation partner gets disconnected, I should be shifted to different stranger In short, I want to imitate http://omegle.com/ Which language is best suited to this task? Jsp and Java? PHP? ASP? Others? Should a...

User to User web chat application (PHP) - what choice?

Hi, I am looking to implement a 1 on 1 user to user web chat application for a new website in the works. Something similar to Omegle is the aim for the final product. Does anyone know of ready made solutions that are capable of this? Due to my experience, PHP is the language of choice. Omegle was written in Python using the twisted lib...