1)I want to devlop a website that has forums and chat.The chat and forums are linked in some way.Meaning for each thread the users can chat in the chat room for that thread or can post a reply to the forum.
I was thinking of using django for forums and twisted for chat thing.Can i combine the two?
The chat application devloped using twi...
Hello,
I am using the Asp.Net Caching mechanism for a highly frequent changing web app.
the cache holds chat participants and their messages, and it needs to keep track of
participants presence.
Data is changing very frequently, participants go in and out, and messages are sent and recieved.
The cache provides me with solutions for:
...
I have the typical Chat aplication.
The Client side is implemented using two Threads.
Thread1
do {
show menu
read option
case option
1: option1
2: option2
.
.
.
5:end
end case
while (!end)
Thread 2:
do {
read message from socket
display message
while (!end)
One problem is the Thread1 being to fast, so aft...
Hello all,
I have a threaded chat server application which requires MySQL authencation.
Is the best way to have 1 class create the MySQL connection, keep that connection open and let every thread use that connection but use own Query handler?
Or is it better to have all threads make a seperate connection to MySQL to authencate?
Or i...
Hi all,
I have made a simple chat application using AsyncSocket class where client nodes can send message to each other via chat server application.
I want to integrate voice chat functionality in it but I am not getting any material over net which can show me correct direction to move on.
Can anyone suggest me some useful link or ide...
Dear overflowers,
I am investigating on how to implement an n-to-n audio chat (so, lets say 4 people hear each other). This is quite trivial using Flash or Wowza Media Server. The real problem is the latency because the 4 people in the chat have to do things as synchronous as possible (for example, something like singing together). Ever...
My site needs a chat room, and I'm also looking to implement a facebookesque person to person chat system.
What is most cost-efficient/performant (purely in terms of bw and server) for me. A regular 1 second poll ajax chat, or a comet solution.
Thanks.
...
Hi all,
I have implemented an application which supports text chat. Now I want to implement voice chat and later video chat in it, but I have less time provided by client :(
So I am planning to go for some open source code in cocoa, which I can use and easily in-corporate in my application.
After analysis over net I found that Jabber ...
Hi there,
I was looking for a chat program, and I found it here in Code Project,
Build a Web based Chat using ASP.NET Ajax (http://www.codeproject.com/KB/ajax/aspnetchat.aspx)
The code is working perfectly,except 2 issues,can anybody tell me how can I overcome these issues?
1-how can I get for example the last 2 hours chat from the d...
hi techies,
i am developing chat application using vb.net and asp.net where i am having a div tag inside which i am displaying the messages posted by the online users what my problem is when the messages are more and exceeds the height of the div tag then i am not comfortable to view the previous messages because i have set the scroll ...
Hi There,
I have a masterpage with a timer that shows server time and refreshes every second, on the content page I have a chat program with ajax, refreshes every to second to get the last messages entered.
I have a Html TextBox and a hidden Submit Button, when user write a text, and hit the enter, I check to see if this is the enter k...
Hi,
I'm coding by python about Gtalk I use XMPPPY.
But I can chat with GTalk client but the problem is I can't accept invitation.
Is XMPPY can do ?
...
I am developing chat appliction using jsp and servlets. Can anyone tell me, what are the possiblities to notify the administrator (trigger events in administrator account), when the client hits the "Startchat " button?
...
I am developing a chat application using VB.NET and ASP.NET and I need to identify the particular user name users post messages. At present, it just shows my name, even for messages I haven't posted.
What am I doing wrong?
...
I developed an AJAX based chat to meet my application
Here is what I do as far the chat is concerned
There are various chatroom and a user can click on any chatroom to start chatting
A user logs in and can be part of only one chatroom at a time
I keep the data of the chatroom (state of the chatroom in a database in XML format which...
there is jerking in text in my chat application (particularly in IE) as i have set timer for refresh the content for each one second how to prevent this
...
I am building a simple ajax chat client for a school project and have thought of a way to implement this, but it seems IMO to be very cumbersome approach:
1) User A sends message which is accepted by a server-side PHP script and saved to database
2) The browser of User B periodically launches a server side PHP script to check if there a...
I'm writing a chat feature (like the Faceboook.com one) for a Google App Engine site. I need a way to keep track of what users have new messages. I'm currently trying to use Memcache:
class Message():
def __init__(self, from_user_key, message_text)
self.from_user_key = from_user_key
self.message_text = message_text
...
Hi guys,
I have to implement gmail style chatting in my asp.net website. now i know much has been said in this regard here and other forums...about COMET and its befits....
i recently saw this site www.indyarocks.com and when i profiled their website i found out that for chatting they send a async request and the page waits until the s...
i am developing chat application using .net, here i have to refresh the online users periodically, is there any way please suggest me.
now i am getting user name once the user is logged in, and i am removing the user once he press the logout button, its ok and working fine, but some users just close their browser its not possible for me...