Simple web Iterface for Window Services, Or start Process from IIS?

  • Thread starter Thread starter mttc
  • Start date Start date
M

mttc

I read a lot about Interface for service with Remoting ans like.
like this link: http://msdn.microsoft.com/en-us/library/ms683502.aspx

But this solution require lot of interface and code on both side. the
more simple and nature approach is must be
Service that start from Webserver, and give ability to ASP page to
access directly to all object at run time.

I'm sure that we can build our service on top of Tomcat or some other
open webserver.

I wonder why not/or have a way to do that with ASP.NET? it's no way to
start process on IIS server start, and give ability to access it by
Server var?
 
having a web server (iis or tomcat) start and manage a process is not a
good design. there is no easy way to detect problems with the process.
in windows system services are design for this, in unix you use cron. if
you use sqlserver, agent jobs are the best choice and windows only
answer to typical job scheduling requirements.

you can use .net remoting to have a web server expose a web interface,
or if you use server 2008 you can buid your service to host http natively.

-- bruce (sqlwork.com)
 
Back
Top