As far as I know you can add a shutdown hook to the JVM, so if you don't find other
solutions you might consider starting jBoss from a Java process...
Runtime.getRuntime().addShutdownHook(new Thread() {
| public void run() {
| System.out.println("Going to shutdown.....");
| while(true);
| }
| };
|
Hope it helps
regards
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4182385#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...