Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP and windows services

Status
Not open for further replies.

aplusc

Programmer
Feb 17, 2002
44
US
Is there a way from ASP (not .NET) to detect whether a particular windows service is up and running? For exmaple, how could I detect the status of the "Event Log" service?
 
I'm going to go out on a limb here and say you can't do it directly from ASP. There is no ASP object that will do this and the probable way of doing it is throught the WinAPI. Since you cannot access WinAPI directly from ASP, that would no be an option. I don't know of any existing COM dll's that will this either unless you found something third party.

I would think you have to create a dll in VB (or any other COM aurthoring language) to do it and call that DLL.

If anyone can prove otherwise, please speak up.

Chris.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top