Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
5  
whathaveyoutried.com – PhonicUK Oct 10 '12 at 10:05
Yes, there are lots of controls. If you combine them with code you can make all sorts of graphical interfaces. Combine a bit of WCF with a bit of WPF. – Jodrell Oct 10 '12 at 10:13

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.

2 Answers

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:

Asynchronous scalable web applications with real-time persistent long-running connections with SignalR

There is also a chat client avalible based on SignalR called JabbR

share|improve this answer

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.