[Installation, Configuration & Deployment] - Setting Up three JBoss instances as NT service
by somejunk
Hi,
I have a 3 node JBoss 4.0.4 cluster on the same machine. I installed JavaService 1.2.7.
I was trying to start the instances as NT service. I used the command shown below but
nothing starts up. I get the message that JBoss is started and stopped.
Please suggest me on this..Thanks
"%JAVASERVICE_HOME%\bin\JavaService.exe"
-install JBoss01
"%JAVA_HOME%\jre\bin\server\jvm.dll"
"-Djava.class.path=%JAVA_HOME%\lib\tools.jar;%JBOSS_HOME%\bin\run.jar"
-start org.jboss.Main
-params -c Node1
-stop org.jboss.Main
-method systemExit
-out "%JBOSS_HOME%\logs\jboss_stdout.log"
-err "%JBOSS_HOME%\logs\jboss_stderr.log"
-current "%JBOSS_HOME%\bin"
-auto
"%JAVASERVICE_HOME%\bin\JavaService.exe"
-install JBoss02
"%JAVA_HOME%\jre\bin\server\jvm.dll"
"-Djava.class.path=%JAVA_HOME%\lib\tools.jar;%JBOSS_HOME%\bin\run.jar"
-start org.jboss.Main
-params -c Node2
-stop org.jboss.Main
-method systemExit
-out "%JBOSS_HOME%\logs\jboss_stdout.log"
-err "%JBOSS_HOME%\logs\jboss_stderr.log"
-current "%JBOSS_HOME%\bin"
-auto
"%JAVASERVICE_HOME%\bin\JavaService.exe"
-install JBoss03
"%JAVA_HOME%\jre\bin\server\jvm.dll"
"-Djava.class.path=%JAVA_HOME%\lib\tools.jar;%JBOSS_HOME%\bin\run.jar"
-start org.jboss.Main
-params -c Node3
-stop org.jboss.Main
-method systemExit
-out "%JBOSS_HOME%\logs\jboss_stdout.log"
-err "%JBOSS_HOME%\logs\jboss_stderr.log"
-current "%JBOSS_HOME%\bin"
-auto
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984277#3984277
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984277
19Â years, 6Â months
[JBoss jBPM] - Multiple Sub-process instance per Process
by vineeth.varghese
Hi,
In jbpm we are able to create multiple tasks/activities for which the count of the activities is not aware at design time. The testcase for this is available as part of the wf pattern test(Wfp16MiWithoutAPrioriRuntimeKnowledge.java).
I want to be able to have multiple sub process for which the sub-process number is available only at runtime. How do we do this in jbpm?. Let me try to give an give a use case to make things clearer:-
Imagine we are designing a workflow for a land/property appraisal for a bank as part of a mortgage application flow, the main process is concerned about details of the mortgage application and one part of the process is concerned with the property evaluation. The customer should be able to attach more than one property for mortgage. There is a "process" for evaluating the price of a property which I have to model as a sub-process but a new sub-process instance should be triggered for each property and of course only when all the sub-processes are complete should the super-process move ahead.
How do we acheive this is jbpm?. From the implementation of process state I don't see this possible. I even looked at writing a custom node but the token object only accepts one sub-process. I am thinking in the lines of creating a hierarchy of tokens but not sure this will work. Any ideas how to do this in jbpm?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984272#3984272
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984272
19Â years, 6Â months