How to make from your Custom HTTP Module a stand aloun TCP\HTTP server capable of for example runing near to any other HTTP server (on same port, just taking some URL namespace like www.example.com/myModule/blabla?id=anyID, and not beeng rood to my other servers like apache HTTP server with PHP (so I can steel call it www.example.com/myApach/blabla?id=anyID) and with my other C\C++ based servers.)?
So I created my module as TCP\HTTP server - I give call URL - it gives me response.
Tooday my ASP.NET server hendels hosting my module.
I want to get rid of that ASP.NET server - make my module stand alone app.
I need CODE examples...)