I want to know how can I write an application in C# that acts as a chat server or any kind of server, maybe a file sharing server.

And the second application will act as a client which connects to the server and then can share info/text/file with the server or other clients connected to the server.

link|improve this question

61% accept rate
feedback

4 Answers

One option is to use WCF for communication. It abstracts the low level communication and can be easier to implement than Windows Sockets.

However, you probably want to look at Socket programming in C#. It is on a lower level but will offer you flexibility, control and speed. Control is important if you are implementing an already defined protocol.

There are plenty of Sockets programming examples out there. Just Google it.

One simple example is this: http://www.c-sharpcorner.com/uploadfile/dottys/socketprogdtrp11222005023030am/socketprogdtrp.aspx

link|improve this answer
feedback

Perhaps this CodeProject article would help. It shows how to build a chat client/server application using WCF and WPF.

WCF is a framework for making the client/server communications easier, and WPF is for better UI presentation.

link|improve this answer
feedback

This is a little old but should get you started.

http://www.codeproject.com/KB/IP/Chat_Application.aspx

link|improve this answer
feedback

First of all, a suggestion would be learn more about Windows Communication Foundation in order to develop the server, even if it's for chatting, file-sharing or whatever.

After that, just learn how to bind a client application to a Windows Communication Foundation service.

A good summary would be you need to develop a network service which may have an administration UI in order to easly configure it, and one or more client application(s) that may connect to the service and consume it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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