discussing some technical aspects covering tools, frameworks, technologies etc (the areas where i m involved and getting experienced) - feel free to discuss!

Sunday, March 09, 2008

dealing with windows services in java

&&tWell, had been thinking to get the control of windows services in a Java application so that programatically I can manage them (start/stop etc).

My main intention to start off this was basically to check the status of the service whether it is up and running. If not, start it before you accomplish the relevant task. The triggering factor was to check the 'MySQL' service as i sometimes keep certain services as of type 'Manual' instead of 'Automatic' so that these services may not take up considerable amount of time when the Windows OS gets booted up.

At times, when running a J2EE web application used to get the SQLException saying that 'could not obtain a connection', used to panic all of a sudden. Then recollecting our duty as having forgotten to start the particular service :)


As such, i am able to get the service up and bring it down through the application. Yet to get to know the status of a particular service and conditionally run the service :)

First, i remember i can get the external process running inside a Java appliation is via Runtime class (java.lang.Runtime) and its 'exec()' method which takes a String argument which says the OS process to run. A couple of years back i have invoked the IE browser via the same and recollected those stuff.

I tried executing the same as

  Runtime runtime = new Runtime().exec("iexplore.exe www.javaranch.com");

The second argument is the actual argument to the application/process to be executed.

 It was giving a different error saying that "java.io.IOException: CreateProcess iexplore.exe www.javaranch.com error=2". Had searched a bit in JavaDoc of the Java API in Process, Runtime classes, but really could not get anything. 

 Beforehand, i wanted to try with some other executables like Notepad etc., to my surprise it was working fine. for example the below command

  runtime.exec("Notepad.exe C:\path.txt");

  perfectly works fine and opens the path.txt inside the notepad application.  Have checked the same with "Calc.exe" as well.

 I have concluded to certain extent that the way we invoke this particular executable is errenous. I have tested the same by invoking the executable in the command prompt. It gave the infamous error

'iexplore.exe' is not recognized as an internal or external command,

   Found out that the path was missing to this executable. That means, the location to the 'iexplore.exe' was not added into the path.  Though i checked the same by adding the location to IE.exe in PATH and it worked fine, but it won't be appropriate to do so just for this testing purpose. So reverted back and tried executing the following:

  runtime.exec("C:\\Program Files\\Internet Explorer\\iexplore.exe www.javaranch.com");

  What a surprise? It worked fine! 

 Then i moved on to my required, 'services.msc' stuff in the same way.  I got the same error but with different error code even when i gave it with full path :(. For the invocation of 

   runtime.exec("C:\\WINDOWS\\system32\\services.msc");

  the error what i got was, "java.io.IOException: CreateProcess: C:\WINDOWS\system32\services.msc error=193". I am sure that the path to 'System32' was not mandatory at all. This error made me get into google and some good links helped me out in finding a way of what this error 193 means, 'this is not a valid Win32 application'.  Also could get some other invocations and out of which what i tried was successful. It is below.

  runtime.exec("cmd.exe /c services.msc");

  Actually, you have to invoke the Command Prompt (cmd.exe) first and then pass the actual service/exectuable to be invoked as an argument to command prompt. The middle argument '/c' is for 'carrying out the command and terminates". And i thought it would work even if it is not present, but it failed :(. Need a clarification here. :).  But it holds good when you type it in 'Run prompt'.  The other option to verify it is '/K' which stands for 'carries out the command specified by the string but remains'. 

  The next question was, how to get the particular service up? I tried by passing the name of the service as an argument as follows.

  runtime.exec("cmd.exe /c services.msc MySQL");

  but it dint give any fruitful results :(.  After a while, though why don't i directly execute the particular executable which the service is made run. Of course, the services is also a shortcut or link pointing to the executable placed elsewhere. Tried it out. it worked but with two drawbacks..

   1. The java executable was getting hung. :(
   2. Was not having a way to stop the executable rather than killing the process!

  Finally when continued searching in google, somewhere i read about the way to start a service. That's through 'NET START '. Here is the link. Got succeeded as well :)
   
  runtime.exec("net start MySQL");
  runtime.exec("net stop MySQL");
 
  Obviously these are invoking the MySQL Service in the services.msc only. As of now i am able enuf to do till this phase. Let me complete the rest and post it here.. 
  

No comments:

About Me

ஏதோ பிறந்தோம், ஏதோ வாழ்ந்தோம் என்றிருப்பதல்ல வாழ்க்கை! எப்படி வாழ்ந்தோம் என்பதும் ஒரு அங்கம். வாழக் கிடைத்த வாழ்க்கையில், ஒரு சிலருக்காவது வசந்தத்தின் முகவரியை அறிமுகம் செய்தோமேயானால் அதுவே வசீகரத்தின் வனப்பைக் கூட்டும்!