Can someone tell me how to create an HTTP server in C# under the .NET Framework?

I have to write my own HTTP server. I do not have IIS. I want a client to be able to access my created HTTP server, which will send a message on a webpage.

Since I am new to this stuff, some sample code and a clear explanation would be very much appreciated.

link|improve this question
feedback

5 Answers

HttpListener is a good place to start.

link|improve this answer
feedback

Maybe this project may help you: http://webserver.codeplex.com/

link|improve this answer
This project's documentation sucks a lot, unfortunately. It seems to be a good project, but the lack of documentation make it almost unusable :-( – Herberth Amaral Mar 10 '11 at 20:48
feedback

there are several open source http servers / http server examples written in C# :

kayak

code project example

codeplex web server

C# corner article

link|improve this answer
how can i save into .asmx the project? – blueGirl Jan 14 '11 at 10:30
How can I create a webservice in .net?Shouldl I navigate to console app? – blueGirl Jan 14 '11 at 10:37
I don't see how your questions are related to the topic, use the google (or some other search engine) and you will find ton of examples and tutorials on this. – Antonio Bakula Jan 14 '11 at 10:58
feedback

Your question is way too wide and you probably won't get any good answers. We can't write a tutorial for you, but there are many out there already. Examples:

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

Also: Learn some basic network programming (with sockets) first, then move on to bigger projects.

link|improve this answer
Thx Anders..Why do i need the iis to be deactivated? I am working on windows. How can I create a webservice that uses a form application. Have some ideeas or examples? thx – blueGirl Jan 14 '11 at 10:09
Do you want to create a web server (a program that serves web pages to clients) or a web page (an actual site)? There's a big difference. If you want to create a web page, check out ASP.NET with C#. Or if you actually want to create a web service, check out WCF in C#. – Anders Holmström Jan 14 '11 at 10:11
I have to create a web server that actually response with a link to a webpage. The client is the one who gives the datas...and the webservice response with a link page – blueGirl Jan 14 '11 at 10:18
I'm not sure I fully understand. My tip is that you rewrite your initial question to specify more what it is you're trying to do so people can point you in a more correct and specific direction. – Anders Holmström Jan 14 '11 at 10:18
I need an HTTP web server – blueGirl Jan 14 '11 at 10:22
show 1 more comment
feedback

A couple of code snippets can be found on the C# in a nutshell website

(BTW the book is excellent)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown