How to register your application into\with Http.sys?
问题 So I created a TCP\HTTP server (IN C#). I want to give to it namespace on my 80's port near to other HTTP servers I have. How to do such thing (step - by step)? 回答1: Look at HTTP Server Tasks in MSDN spec: Initialize HTTP service API, call HttpInitialize Register URLs with HTTP.SYS, call HttpAddUrlToUrlGroup Receive a request, call HttpReceiveHttpRequest Send a response, call HttpSendHttpResponse Cleanup after urself, call HttpRemoveUrl and HttpTerminate There is a also a fully fledged