I need to write an Http Handler to listen to port 80.
What should be the approach? Like should I use raw sockets to listen to port 80 within Http Handler or is there a better way to do?
I went through some tutorials as the one specified below..
http://msdn.microsoft.com/en-us/library/ms228090.aspx
But couldn’t make much out of it. Any idea will appreciated.
Thanks
OK. What you are looking at is a way to make a handler in IIS. If IIS isn’t desired, consider using HttpListener to hook the HttpPipeline from any app.