Click here to Skip to main content
15,911,785 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi, i have a requirement in my application,
how to develop chat application using dotnet remoting concept.
this application should be able to chat in network or in the group.
how to do it. give me suggestions..
thanks.
Posted

Here is a codeproject article:
WCF / WPF Chat Application[^]
 
Share this answer
 
Comments
parashu durgam 10-Apr-12 3:11am    
thanks for posting this article. i required this application using asp.net and c#.net, you just sent me using xaml(silverlight)
Clifford Nelson 10-Apr-12 11:06am    
You should be able to use the same code, just have to change the front end. Of course for ASP.NET you don't have to depend on WCF, just have to be able to work with multiple sessions at once. I am not a ASP.NET developer, and this is stuff beyond my skill level.
You can/should build the chat server part using WCF
1) make that service available via REST (WCF will let you do this)
2) and then you can build the UI on asp.net using ajax/javascript calling the service.

It will be easier this way because you can return json from the WCF RESTful service and that easy to handle from the browser side with jquery etc.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900