I'm responsible for a .NET process running under windows. The process is running as a windows service.
I would like to have the ability to be able to get some info from the service in a web browser. For that matter I would like to write a small ASP.NET web service. The problem is that I want the run the web service within my process. As far as I know, I can't do that since ASP.NET must run from within an IIS.
so...my question is, is it possible to host ASP.NET server within another process?
I know that in the common scenario, I should have the "process code" run as "code behind" the ASP.NET but in my case, the .NET service is already a part of our product so in this case I'd like to have the opposite.
Thanks a lot.