Hi,
Our project requirement is to create a
java application and run it as a service (daemon) in Solaris. We used
Java Service Wrapper to make a java app as a daemon process. The wrapper takes care of creating the daemon process (including file permission, executable scripts, etc.).
We are using Reflection (Xterm via Telnet) to connect to the Solaris box and start the service from there. The problem is that when we close the Xterm window, the deamon process gets killed.
We wanted the service to be alive even after closing the Xterm.
Any solutions to this..
Thanks in advance...