Generic term for "Instant Messaging System". It can also represent a discussion that occurs in an Instant Messaging System.
1
vote
0answers
89 views
UDP Hole Punching Not Working
I am trying to create a chat program that works by UDP hole punching and connecting directly to a node which is provided by a broker.
The script I have right now works just fine locally. The problems ...
0
votes
0answers
8 views
Mobile Chat App to Email
I'm thinking about a mobile chat app that allows you to start a chat with someone who has an email address. Additionally, that person who has an email address is not using the same client (since they ...
0
votes
0answers
17 views
Chat with Node.js and socket.io
I am trying to make a chat in node.js and socket.io using express. I tried to follow this tutorial here:
I would like to make my personal chat, based on this tutorial. In the tutorial from the link ...
-1
votes
0answers
9 views
detect ip address from a software netstat and close connection [closed]
and thanks in advance for reading my question.
I just learned about netstat command and i have put to test the connections in my pc, i use a software called 123live help. So i run the netstat -ano ...
-1
votes
0answers
12 views
Retweet automatically messages from user [closed]
I am creating chat web application and i want to give the option to users to automatically retweet all that they writes in the chat to their twitters.
User will have checkbox to retweet or not. I ...
0
votes
2answers
28 views
Send customized text from one JTextpane to another JTexpane
I am developing one simple Java based application in Swing. I have one text pane where I customize it's text using text editor like making text bold, italic, inserting smiley. Now in my application ...
0
votes
1answer
57 views
iOS chat-app: How do I notify the user that the app will not function anymore if the user leaves the app?
I'm developing a chat-app for iOS that must use an existing server API. The way it works is pretty straightforward: the app checks every given interval whether there are new messages on the server and ...
0
votes
0answers
38 views
UDP client/server chat
I am planning to make a Java chat messenger. But I am facing a problem. It is that the client side cannot send a message until it receives a message from the server side program. how do I fix this?
I ...
0
votes
1answer
41 views
Bluetooth Chat and Android - Bad data received
I have a problem receiving data from my Arduino using the Bluetooth sample App.
My basic Arduino code sends some data at regular intervals. I have tried various baud rates.
void setup() {
...
-6
votes
0answers
30 views
Where can i save chat history in android? sqlite, sdcard, remote server (without loading time ), other [closed]
I created a chat application. That is taking a lot of loading time at the time of get the chat history from the remote server. If i will use sqlite then i think it is Ok and remove loading time to get ...
0
votes
1answer
62 views
UDP socket chat application in java
I'm trying to create a very simple chat application in Java using UDP sockets. There is one server and multiple clients.
right now my code is :
Server :
package chat;
import java.io.*;
import ...
1
vote
1answer
62 views
peer to peer simple python chat program
I writing a simple peer to peer chat program that allows the server to send and receive message to the client. The client can send message to server but when I try sending a message from the server, ...
0
votes
0answers
34 views
WebRTC - flash client
I have a website where one user may chat to another, using their webcam, via WebRTC.
Chrome supports WebRTC, as does Firefox's nightly build. However, some visitors use Internet Explorer, and thus ...
0
votes
0answers
20 views
deploying chat application on web server
I have build one chat application, which consists of server and client part & backend uses sql server 2005. Now i want to deploy my chat app on Apache web server. by converting it to exe and allow ...
-1
votes
0answers
24 views
java chat tool with long polling [closed]
Need to be inserted into an existing web application on java chat with an unlimited number of participants. With the use of technology long polling. How to do it? Where can I find examples of the ...
-2
votes
0answers
13 views
Chat.Stackoverflow.com issue with time logging [closed]
I found an issue on chat.stackoverflow.com chat server issues with displaying time log. could anyone can check it. I don't know exactly what happened.
Thanks
0
votes
0answers
18 views
Chat - Seeing when message is read
It's not good that someone can see that have you seen their messages. It might make some troubles to someone. Example some guys who i know works as stalkers, if you have seen their message, then they ...
0
votes
2answers
40 views
signalR how to spread room
I have a question about signalR simple chat application. We have an app working on local host and people can join and chat with each other. Here is the problem we could not specify which message will ...
0
votes
0answers
62 views
Android Bluetooth Chat application - Unable to connect - Insecure RFComm - Devices used Samsung Galaxy Duos & Wynncomm G51
I'm just trying to have insecure communication between 2 android devices i.e. Samsung Galaxy Duos & Wynncomm G51.
The sample Android SDK 17 API chat application when installed in both the ...
0
votes
2answers
42 views
Storing chat history in a single database table
I am trying to create a simple AJAX/PHP chat application to enable communication between registered users on a website. The problem with it is storing the chat history. I thought of storing all the ...
-1
votes
0answers
46 views
big chat projet : allow user to instantiate a new chat room [closed]
i have found a chat code on the Internet here :
http://tutorialzine.com/2010/10/ajax-web-chat-php-mysql/
I've been trying to do understand the code for a few weeks (i'm a bit of a beginner) and i'm ...
0
votes
0answers
41 views
how to use xmpp (smack) over talk.google.com server for OWN chat app
private static final String HOST = "talk.google.com";
private static final int PORT = 5222;
private static final String SERVICE = "gmail.com";
// establish connection
connConfig = new ...
0
votes
1answer
41 views
chatserver in node.js fundamental error
Hello i am running a basic code for a chatserver on node.js. This is almost lifted from the book - Node:Up and Running. The problem is when a client types a message, his message is transmitted at each ...
0
votes
1answer
22 views
Uninitialized Constant Error from Ruby EventMachine Chat Server
I'm trying to build a chat server in ruby using EventManager. Needless to day, I'm new to Ruby and feeling a little over my head with the current error I am getting, as I have no clue what it means ...
0
votes
0answers
35 views
SignalR- how to bind contact list in my ASP.NET web chat
As titled, i started to develop a web chat system by using SignalR. But i wonder the contact list should bind in my aspx code behind or bind when signalR hub is started. i refer the web chat build ...
-2
votes
0answers
9 views
How to request for chat on SO [migrated]
if i want to chat with a particular user who is in SO that how to give request for chat?
or
is what is the procedure to invite the user to chat.
Thanks
1
vote
0answers
32 views
Retrieving chat history and saving it into mysql in node.js
I've developed a chat application using socket.io that is working fine
Code is like this
var sys = require('sys');
var fs = require('fs');
var io = require('socket.io');
var Server = ...
-1
votes
1answer
34 views
Recognize verbal request and answer it [closed]
What I want to do is like a chat bot.
For example, when someone type "how are you", I want my bot to answer "fine, thanks".
It's pretty simple, but if my bot can tell the weather, there's is too much ...
0
votes
1answer
19 views
Inline support Chat implementation
We are creating a live chat support system. Currently if the visitor clicks on live chat button, a new window opens up and user can talk their. What I am trying to accomplish is to open the chat ...
1
vote
1answer
15 views
how to fetch new messages without overloading server in php?
which technology is being used in Google or Facebook chat applications to fetch new messages from server without overloading server with continuous servers queries using Ajax calls ?
1
vote
1answer
122 views
How to lock on to a cloned form in Delphi?
I am writing a chat program that has a bunch of clients connect to it and populate themselfs to a listview, I want to be able to click on each individual client and open up a form that looks like a ...
0
votes
0answers
29 views
need to send error to unauthorized user in socket.io
as the title is obvoius i need to send back some error message for unauthorized user and i need to know how to achive this for example i need to send this message to user
you dont have any ...
6
votes
2answers
81 views
+50
How to block anonymous user in XMPP
In order to implement chat functionality in my app, I have integrated XMPP framework in to it. There is no buddy request functionality hence users can send messages to other users without sending a ...
0
votes
1answer
38 views
Hooking any AI chatbot to Facebook chat
I haven't tried anything on this, but is it possible? If it is, is there a way of making a plugin for firefox or chrome? or making a software that enables you to hook ai chatbot to Facebook chat. I ...
0
votes
2answers
39 views
Narrow communication to a specific client in chat application java
I just created an java chat application that allow a communication between many clients, however, i would like also to have the ability to one client send a message to a specific client, the others ...
0
votes
0answers
29 views
Qucikblox IOS SDK Creating a chat room - Room is locked?
I'm adding the Quickblox chat API to my app and I am able to view chat rooms just fine.
But when trying a create a chatroom, I get a message saying
<message xmlns="jabber:client" ...
0
votes
0answers
25 views
Get all users which are in Group using smack
Im presently starting a chat app, Im a newbie to Smack. I need all the users who are in a common group using smack.
I have added "Registration" plugin which is in Openfire website and as soon as I ...
0
votes
0answers
11 views
Tinymce toolkit for java
I am building a simple chat application using java in applets, which consists of client & server part like any other chat application. Now at the client side, what i need is, i want user to have ...
0
votes
2answers
46 views
Socket chat system - broadcasting them to all clients
Communication between a server and a clients works, but the server don't forward the client messages to the other connected client's, but only to the sender.
i want the server react to incoming ...
1
vote
0answers
39 views
Connect clients in server-client system
I have a multithreaded server-client system where clients chat with the server and receive the sent message back, but only client-to-server way of communication. I want to make it client-to-client. ...
0
votes
1answer
33 views
Extracting username in IRC logs with regex?
I'm learning programming as best as I can, and I've been starting with Python. I am currently writing an IRC statistics generator (as if there weren't enough of those already), and I am trying to come ...
-2
votes
0answers
29 views
How would I go about creating my own “Skype like” messenger? [closed]
What would be the easiest way to do this?
What would be the best language to write it in?
What requirements do I need before I take on a project like this?
How would you go about creating a program ...
1
vote
1answer
57 views
Ruby on Rails — Faye Framework — private_pub
I'm using private_pub to implement a one-to-one chat-like application.
Here is my story: as a user, I would like to receive a message when my partner leaves the chat – closes the window, etc.
...
-1
votes
0answers
26 views
Node JS chat not working until receiver don't trigger
I am creating one-to-one chat, And when I start chat from one end, it sends the msg to sender only, It does not work until receiver trigger the chat..... it wasted my 3 days plzzz help....here goes my ...
-2
votes
0answers
94 views
Facebook chat not showing all of my online contacts [closed]
Facebook chat on outlook, skype and windows phone not showing all online contacts.
-1
votes
0answers
96 views
Facebook chat system final achievement [closed]
I was created a chat system like facebook. And it's working perfectly.But i have a little problem with ajax.I'll say my problem using as example like bellow.
User: A
User: B
When user(A) and ...
0
votes
1answer
44 views
actionscript p2p chat - how to transmit video
it's me again! i try to develop my chat using actionscript! and i got some success! this is my code:
actionscript:
<?xml version="1.0" encoding="utf-8"?>
private ...
-5
votes
0answers
28 views
Few questions with respect to development of better chat application [closed]
I have few questions to post to you and i really appreciate your helps.
All of them are related to the chat application i am developing in RMI Java.
1)I wonder about the ways to save the chatting ...
1
vote
0answers
64 views
Allowing multiple users to join a chatroom (using Django, Socket.io and node.js)
I followed this tutorial and I created my own database, etc. I was able to run the above example successfully but I realized, it's just the barebones of what a chat encompasses.
Has anyone actually ...
0
votes
1answer
95 views
Jabber client issue with Authentication c#
Given below is a sample console application uses jabber-net client for sending a sample test message after authenticating the connection.
I am receiving error while authenticating the login ...


