service.bat acts just like a wrapper over the run.bat. So edit your service.bat to include
the -b option as follows:
:cmdStart
| REM Executed on service start
| call run.bat -b 0.0.0.0>run.log
|
:cmdRestart
| REM Executed on service restart
| REM Note. We can only stop and start
| call shutdown -S >>shutdown.log
| call run.bat -b 0.0.0.0 >>run.log
| goto cmdEnd
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4161926#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...