I am looking for a library that will allow me to look up the status of a windows service to verify that the service is started and running. I looked into the Sigar library, but it is GPL and therefor I cannot use it. A Commercial or BSD(ish) license is required as this will be bundled into commercial software.
|
|
|
|
|
|
|
If nothing else helps, try to think of a slightly different approach (if you can, of course), e.g.:
|
||
|
|
|
|
I don't know of any libraries, but depending on how detailed you need to get you might get by with some shell commands and parsing the output. NET START servicename will either start the service, or give you back an error message that tells you its already started. I don't know of any command that will just give you the status though. |
||
|
|
|
|
I don't think there is any pure-Java way to do this because some operating systems don't have the notion of "services" like Windows does. In our projects, we wrote a wrapper around calls to the "sc" command from the command line. To get the status of a service, you can do:
You'll have to manually parse the output but it's pretty straightforward. |
||
|
|
