Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

chat program

Status
Not open for further replies.

digiduck

Programmer
Apr 4, 2003
95
US
Okay, i'm curious what it would take to be able to create a chat client that would run on multiple comps, or as a web app online, that would allow those running it to connect to a central chat room. like IRC i guess but my own creation of it. what would this take. like for the central server i guess, to receive and store and dish out all the info could an ASP.NET app do this? could this be done entierly via form/query post/request(s) in both the program and the ASP.NET app? if not what would I need to be using? some kind of sockets? if so can where can I find more info on using sockets.

thanks for any input.
 
You can use TCP sockets, and direct TCP communication. Else, you could use DCOM or SOAP. If you use DCOM, you are bound to Windows. Else, you could use any platform and any languages. Is perfectly feasible to have client and server made in different programming languages. You can use also HTTP, but HTTP chats are bad.

Ion Filipski
1c.bmp

ICQ: 95034075
AIM: IonFilipski
filipski@excite.com
 
where can i find information and examples on using SOAP in C#?

Gone looking for myself. Should I arrive before I'm back, keep me here.
 
I think a simple search in msdn.microsoft.com will give a lot of information.

Ion Filipski
1c.bmp

ICQ: 95034075
AIM: IonFilipski
filipski@excite.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top