Re: [ilugd] Daemonizing Java

2003-10-02 Thread Tarun Dua
On Wed, 2003-10-01 at 23:11, shah tushar wrote: I am not expert in java but here is my solution that works. Basically you can look into how tomcat startup scripts are written to get more idea. Code at org.apache.catalina.startup.Bootstrap maybe of some help to you. > Can anybody point me to a g

Re: [ilugd] Daemonizing Java

2003-10-01 Thread Achal Prabhakar
I don't think you can daemonize a Java application natively. When you say daemonize a Java application, what you mean is daemonizing the JVM and there is no way to do that except by wrapping it in a separate application, which daemonizes itself before it spawns the JVM process. Now there may be