|
From: Lars S. <Lar...@if...> - 2010-09-08 09:51:49
|
Hi everyone
I would like to make a Windows Service and Linux Daemon to start and
stop my application using Java Web Start. I planned of starting my
application from the service with:
Process p = Runtime.getRuntime().exec("javaws http://...
in order to stop my application I planned of using:
p.destroy();
Is there any example code for such a service?
Lars
|