i need to built my own chatting software as like gtalk etc which can work for LAN,can anyone suggest how to implement it in .net,do we have any kind of control for that.
|
closed as not a real question by Oded♦, Cuong Le, Roman Luštrik, ρяσѕρєя K, Yan Sklyarenko Oct 10 '12 at 14:36
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can use SignalR for that, SignalR is an async library for .NET to help build real-time multi-user interactive web applications. Take a look a this blog post for a simple chat example: There is also a chat client avalible based on SignalR called JabbR |
|||
|
|
|
First of all learn the basics of programming in C#. If you haven't already done that, use books or the internet. C# beginners guide: http://www.c-sharpcorner.com/UploadFile/anandnarayanswamy/CSTutorial1AN11282005015140AM/CSTutorial1AN.aspx Then learn something about the use of threads and socket programming in C#. Because your chatprogramme shouldn't hang (I guess ;) ) everytime you're waiting for an input from another member. Here are a fews links to the MSDN: Threading: http://msdn.microsoft.com/en-us/library/aa645740%28v=vs.71%29.aspx Sockets: http://msdn.microsoft.com/en-us/library/cc296248%28v=VS.95%29.aspx I found this code on codeproject: http://www.codeproject.com/Articles/12893/TCP-IP-Chat-Application-Using-C I think it is quite helpful to see how threads and sockets are working. |
||||
|
|