Hi All,
Needed help .
I am able to start my JBPM environment using build.xml which is running through ANT , which starts h2 db and then it starts Jboss with some default set of argument
<arg value="--server-config=standalone-full.xml" />
<arg value="-Dorg.kie.demo=false" />
<arg value="-Dorg.kie.example=false" />
<arg value="-Dorg.kie.server.persistence.ds=java:jboss/datasources/jbpmDS" />
<arg value="-Dorg.jbpm.casemgmt.showcase.url=/jbpm-casemgmt"/>
and this is working fine.
But when i am trying use standalone.bat to start the Jboss, initially kieserver.war deployment was getting failed and then i started referring to standalone-full.xml in order to resolve this i am using
standalone.sh --server-config=standalone-full.xml
I have added system properties which is defined in build.xml
Question: is there any way we can always refer to full.xml rather then passing as an argument
But even after this when i login into JBPM Console i am not seeing any project/or deployment unit under execution server. In the logs i can see :
2019-06-21 14:07:38,918 WARN [org.jbpm.workbench.ks.integration.KieServerDataSetManager] (Thread-193) Timeout while trying to register query definitions on 'default-kieserver@localhost:8082'
2019-06-21 14:07:38,925 WARN [org.jbpm.workbench.ks.integration.KieServerDataSetManager] (Thread-194) Timeout while trying to register query definitions on 'default-kieserver@localhost:8082'
2019-06-21 14:07:38,959 WARN [org.jbpm.workbench.ks.integration.KieServerDataSetManager] (Thread-196) Timeout while trying to register query definitions on 'default-kieserver@localhost:8082'
2019-06-21 14:07:38,987 WARN [org.jbpm.workbench.ks.integration.KieServerDataSetManager] (Thread-195) Timeout while trying to register query definitions on 'default-kieserver@localhost:8082'
2019-06-21 14:07:44,436 WARN [org.jbpm.workbench.ks.integration.KieServerDataSetManager] (Thread-197) Timeout while trying to register query definitions on 'default-kieserver@localhost:8082'
Question: what could be the reason. it is wroking with buil.xml but not with standalone.bat.
Note: I have started the H2 DB and then tried to start the server.
Regards,
Avinash