|
I want to build a chat application using PHP. Does anybody have any idea about it? If so please reply. The chat application must be user friendly, multiple chatting scenario must be there.
Started by Vishal Shah on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Comet Chat is a good one, like Faceb00k.
Just buy one if you don't want to code.
Ajax-polling front-end -> chat_handler.php -> backend database
Done.
Sounds pretty straight forward.
|
|
I want to implement chat application for iphone.but dont know how to start this applicaton can u advice me for that?
Started by mactalent on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can implement the XMPP.
Of information and build a Twitter application as the class project.
|
|
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
Answer Snippets (Read the full thread at stackoverflow):
With jquery, rather than
$('#convo').html('<p>Msg1</p><p>Msg2</p><p>Msg....
Do you know how to use AJAX or are you refreshing the entire page?
if using ajax, rather than "replacing" the content in the div, "append" to it
eg .
|
Ask your Facebook Friends
|
Hii, I want to built a web based chat using j2ee at backend logic.i want to implement the similar way the gmail do,so that performance of application doesnr degrade.please suggest what type of architecture shoul i follow.load of application would be high...
Started by manu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It appears somebody has a Jetty running on http://64.164.6.244:9090/test/chat.
Container has a demo chat application which uses Ajax as the gmail chat does and which is not too complicated to learn.
|
|
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.
Answer Snippets (Read the full thread at stackoverflow):
And also Tornado claimsgrono.net has chat....
How about using tornado ? I tried demo chat application of Tornado.
I think for a chat application you can use other server.
But it all is doable on Django.
To perform well.
|
|
Hi I need a simple chat application using c# winform. How do i start? is there any sample available for this?
Regards, Nagu
Started by Nagu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is WCF/WPF chat that can help to start
If you are looking for sample then ask to google of the application and to answer these questions:
- how do a message get transmitted?
- what can be transmitted.
|
|
I want to devlop java chat application. I am looking for any java framework that will help me in devloping chat application. So that i can easliy devlop the chat application using the framework. The application needs to run only in LAN. I want the chat...
Answer Snippets (Read the full thread at stackoverflow):
I hope this helps!
Have a look at JXTA - https://jxta.dev.java.net/ They also have demo application interested in building a chat client itself), I'd build on non-sequitor's suggestion and suggest using protocol - this is a widely used....
|
|
I've to write an Ajax chat web application in ASP.NET for a friend, and I've a question: if client1 sends a message to client2, how should the application send the message to client2? Is there a better way than sending requests to the server, "asking"...
Started by Alon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Best thing you can.
I implement chat application:
client1 post message via Ajax to server server save it to repository as read I will save chat logs to database once the chat session closed or expired.
|
|
My question is an elaboration of this one: http://stackoverflow.com/questions/1093251/php-mysql-ajax-chat
I have a 100 chat rooms which I need to make. Is there a php/mysql based chat system that would do something like this?
phpFreeChat is mentioned,...
Started by chris on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The app is very simple, which is part.
The fact that it is basic and does the core stuff of a chat app made me stick with it.
ICEspresso Chat Framework
link
I've used ajchat in the past.
|
|
Hello,
Which .NET namespaces should I be looking at if I'd like to start writing a very simple chat application (in C#)?
Please let me know if there's a way that I can clarify or expand on this to make it a more precise question.
Thanks,
Adam
Started by Adam Kane on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
TcpClient
If you are going to do advanced things like file transfers:
System.IO
Your going to need to look at System.Net, System.Net.Sockets, and... .
For just the basic functionality:
System.Net
System.Net.Sockets
The TcpClient class will be your friend .
|