Problems installing Drools on Tomcat 8

2,059 views
Skip to first unread message

JDM

unread,
Feb 21, 2017, 3:26:50 PM2/21/17
to Drools Setup
First time Drools user (tester) and I am having a terrible time installing it on Linux server running Tomcat 8.0.41.
I have followed all the directions I can find out there, and still can't get it working.  I assume there is not some simplified setup for this still, as I can't find one.  Assuming not, if anyone could help me out I would really appreciate it.
This has been driving me insane!  Below is current error, and what I have done to get to this point to see what I am missing.

CURRENT ERROR:

21-Feb-2017 15:09:40.018 SEVERE [localhost-startStop-1] org.apache.catalina.core.ContainerBase.addChildInternal  ContainerBase.addChild: start:

 org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/kie-server]]

at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:162)

at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:753)

at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:729)

at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717)

at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:940)

at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1816)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:473)

at java.util.concurrent.FutureTask.run(FutureTask.java:262)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:745)

Caused by: bitronix.tm.utils.InitializationException: cannot open disk journal

at bitronix.tm.BitronixTransactionManager.<init>(BitronixTransactionManager.java:98)

at bitronix.tm.TransactionManagerServices.getTransactionManager(TransactionManagerServices.java:75)

at bitronix.tm.integration.tomcat55.BTMLifecycleListener.lifecycleEvent(BTMLifecycleListener.java:18)

at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:95)

at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:90)

at org.apache.catalina.util.LifecycleBase.setStateInternal(LifecycleBase.java:388)

at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:144)

... 10 more

Caused by: java.io.FileNotFoundException: btm2.tlog (Permission denied)

at java.io.RandomAccessFile.open(Native Method)

at java.io.RandomAccessFile.<init>(RandomAccessFile.java:241)

at bitronix.tm.journal.DiskJournal.createLogfile(DiskJournal.java:237)

at bitronix.tm.journal.DiskJournal.open(DiskJournal.java:137)

at bitronix.tm.BitronixTransactionManager.<init>(BitronixTransactionManager.java:85)

... 16 more


WHAT I HAVE DONE SO FAR (I am detailing this out in case you find I have missed something glaring, as I have never worked with this before):
1. Got kie-wb-distribution-wars-6.3.0.Final-tomcat7.war (renamed it to kie-wb.war) and kie-server-6.3.0.Final-webc.war (renamed it to kie-server.war) and placed in my webapps directory.
2. Downloaded the following jar files from maven and placed them in the tomcat8/lib directory.
     btm-2.1.4.jar
     btm-tomcat55-lifecycle-2.1.4.jar
     h2-1.3.161.jar
     jacc-1.0.jar
     jta-1.1.jar
     kie-tomcat-integration-6.3.0.Final.jar
     slf4j-api-1.7.2.jar
3. Created btm-config.properties and placed in tomcat8/conf directory with the following in it:
     bitronix.tm.serverId=tomcat-btm-node0
     bitronix.tm.journal.disk.logPart1Filename=${btm.root}/work/btm1.tlog
     bitronix.tm.journal.disk.logPart2Filename=${btm.root}/work/btm2.tlog
     bitronix.tm.resource.configuration=${btm.root}/conf/resources.properties
4. Created resources.properties and placed in tomcat8/conf directory with the following in it:
     resource.ds1.className=bitronix.tm.resource.jdbc.lrc.LrcXADataSource
     resource.ds1.uniqueName=jdbc/jbpm
     resource.ds1.minPoolSize=10
     resource.ds1.maxPoolSize=20
     resource.ds1.driverProperties.driverClassName=org.h2.Driver
     resource.ds1.driverProperties.url=jdbc:h2:mem:jbpm
     resource.ds1.driverProperties.user=sa
     resource.ds1.driverProperties.password=
     resource.ds1.allowLocalTransactions=true
5. Edited the file tomcat-users.xml in the tomcat8/conf folder to include the following:
     <role rolename="admin"/>
     <role rolename="analyst"/>
     <role rolename="user"/>
     <role rolename="kie-server"/>
     <role rolename="manager"/>
     <role rolename="manager-gui"/>
     <role rolename="manager-status"/>
     <user username="workbench" password="workbench1!" roles="admin,kie-server"/>
     <user username="kieserver" password="kieserver1!" roles="kie-server"/>
     <user username="admin" password="admin" roles="admin,manager,manager-gui,managerstatus"/>
6. Created setenv.sh and placed in tomcat8/bin with the following in it:
CATALINA_OPTS="-Xmx512M -XX:MaxPermSize=512m -Dbtm.root=$CATALINA_HOME -Dorg.jbpm.cdi.bm=java:comp/env/BeanManager -Dbitronix.tm.configuration=$CATALINA_HOME/conf/btm-config.properties -Djbpm.tsr.jndi.lookup=java:comp/env/TransactionSynchronizationRegistry -Djava.security.auth.login.config=$CATALINA_HOME/webapps/kie-wb/WEB-INF/classes/login.config -Dorg.kie.server.persistence.ds=java:comp/env/jdbc/jbpm -Dorg.kie.server.persistence.tm=org.hibernate.service.jta.platform.internal.BitronixJtaPlatform -Dorg.kie.server.id=tomcat-kieserver -Dorg.kie.server.location=http://localhost:8080/kie-server/services/rest/server -Dorg.kie.server.controller=http://localhost:8080/kie-wb/rest/controller"
7.  Downloaded the following jar files from maven and placed them in the tomcat8/lib directory:
     kie-tomcat-integration-6.3.0.Final.jar
     javax.security.jacc-api-1.5.jar
8.  Started tomcat
9.  Went to http://<ipaddress>:8080/kie-wb/ and got resource not available (404) and checked the log and found the error I provided above.

Any help would be massively appreciated!  Please let me know if other logs/info would be helpful for me to provide.
Thanks

Michael Anstis

unread,
Feb 21, 2017, 3:32:57 PM2/21/17
to drools...@googlegroups.com
Our WAR and instructions target Tomcat 7; I don't know if Tomcat 8 is any different?

Having said that the error "java.io.FileNotFoundException: btm2.tlog (Permission denied)" makes me wonder if Tomcat is running under a user account that lacks suitable permissions for the "btm2.tlog" file? 

--
You received this message because you are subscribed to the Google Groups "Drools Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup+unsubscribe@googlegroups.com.
To post to this group, send email to drools...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/drools-setup/df908e7c-6b29-4537-8ebc-1c082b6e75da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

JDM

unread,
Feb 21, 2017, 3:42:07 PM2/21/17
to Drools Setup
Possible.  Again... first timer with this just trying to get app going... but this is the permissions for the tomcat8/work folder:
     drwxr-xr-x 3 tomcat tomcat 4096 Feb 20 21:07 Catalina
Note:  this is a Linux instance spun up via AWS.
To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup...@googlegroups.com.

Michael Anstis

unread,
Feb 21, 2017, 3:49:52 PM2/21/17
to drools...@googlegroups.com
Heh, well we're all first timers with many things :-)

I don't know, for example, AWS.. so it's the blind leading the blind.. but Google suggests you're not alone and it is a permissions problem.

How Tomcat is installed and configured on AWS will affect many things (for example I know Ubuntu's installation of Tomcat is quite different to if you install it manually yourself).

Perhaps some kind folk over on a AWS forum (or others on these forums!) can advise further? 

To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup+unsubscribe@googlegroups.com.

To post to this group, send email to drools...@googlegroups.com.

JDM

unread,
Feb 21, 2017, 5:17:31 PM2/21/17
to Drools Setup
I can't imagine AWS would be the issue here.
Do the steps I took look correct, did I miss anything or mess anything up along the way?
I saw posts where people had used Tomcat 8.

Michael Anstis

unread,
Feb 21, 2017, 5:22:18 PM2/21/17
to drools...@googlegroups.com

Well..... my advice to discount AWS is to install the workbench in a standalone/local Tomcat instance where you can control all permissions. Most (all?) people who I see have installed the workbench on Tomcat have had local installs. What makes you think AWS cannot be causing the issue when the error clearly relates to a permissions problem?

To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup+unsubscribe@googlegroups.com.

To post to this group, send email to drools...@googlegroups.com.

Michael Anstis

unread,
Feb 21, 2017, 5:25:20 PM2/21/17
to drools...@googlegroups.com

JDM

unread,
Feb 21, 2017, 5:48:04 PM2/21/17
to Drools Setup
sorry, to be clear... reason why I was I can't imagine AWS would be the issue is because I can customize whatever permissions I want still there.  So maybe it's what caused the issue because perhaps their AMI doesn't set it up with the required permissions to run these applications, but I'm just saying that if I know what permissions are needed, there shouldn't be a reason why I couldn't apply those permissions.
Make sense?

Michael Anstis

unread,
Feb 21, 2017, 5:54:15 PM2/21/17
to drools...@googlegroups.com

IDK if this has any help http://blog.athico.com/2014/04/deploying-kie-drools-wb-on-tomcat.html?m=1

To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup+unsubscribe@googlegroups.com.

To post to this group, send email to drools...@googlegroups.com.

JDM

unread,
Feb 21, 2017, 6:10:53 PM2/21/17
to Drools Setup
Solved my permissions issue!  kie-server has now started!  I resolved it with this (adopted it for Tomcat 8):
Thank you for your help!!!
With that said, kie-wb still hasn't started yet.  Getting closer though... it is at least a new error, not permissions related.  Below is the log.  No clue on this one!  Does this error resonate with you at all?

21-Feb-2017 23:07:53.217 INFO [http-nio-8080-exec-15] bitronix.tm.integration.tomcat55.BTMLifecycleListener.lifecycleEvent Starting Bitronix Transaction Manager

21-Feb-2017 23:08:03.678 WARNING [http-nio-8080-exec-15] org.apache.catalina.core.NamingContextListener.addResource Failed to register in JMX: javax.naming.NamingException: no resource registered with uniqueName 'jdbc/jbpm', available resources: []

21-Feb-2017 23:08:03.927 INFO [http-nio-8080-exec-15] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.

21-Feb-2017 23:08:28.533 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.kie.remote.services.rest.exception.DescriptiveExceptionHandler

21-Feb-2017 23:08:28.533 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.kie.remote.services.rest.jaxb.JaxbContextResolver

21-Feb-2017 23:08:28.533 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.codehaus.jackson.jaxrs.JsonMappingExceptionMapper

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.codehaus.jackson.jaxrs.JsonParseExceptionMapper

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.jboss.errai.security.server.jaxrs.UnauthenticatedExceptionMapper

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.codehaus.jackson.jaxrs.JacksonJsonProvider

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.jboss.errai.security.server.jaxrs.UnauthorizedExceptionMapper

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedProviders RESTEASY000300: Adding scanned @Provider: org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.guvnor.rest.backend.ProjectResource

21-Feb-2017 23:08:28.538 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.ExecuteResourceImpl

21-Feb-2017 23:08:28.539 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.DeploymentResourceImpl

21-Feb-2017 23:08:28.539 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.RuntimeResourceImpl

21-Feb-2017 23:08:28.539 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.TaskResourceImpl

21-Feb-2017 23:08:28.539 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.QueryResourceImpl

21-Feb-2017 23:08:28.540 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.server.controller.rest.RestKieServerControllerImpl

21-Feb-2017 23:08:28.540 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.jbpm.console.ng.rest.ProcessImageResourceImpl

21-Feb-2017 23:08:28.540 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.HistoryResourceImpl

21-Feb-2017 23:08:28.540 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.server.controller.rest.RestKieServerControllerAdminImpl

21-Feb-2017 23:08:28.540 INFO [http-nio-8080-exec-15] org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.processScannedResources RESTEASY000305: Adding scanned resource: org.kie.remote.services.rest.DeploymentsResourceImpl

21-Feb-2017 23:08:29.463 SEVERE [http-nio-8080-exec-15] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file

21-Feb-2017 23:08:29.463 SEVERE [http-nio-8080-exec-15] org.apache.catalina.core.StandardContext.startInternal Context [/kie-wb] startup failed due to previous errors

21-Feb-2017 23:08:29.555 SEVERE [http-nio-8080-exec-15] org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [kie-wb] created a ThreadLocal with key of type [org.eclipse.jgit.nls.NLS$1] (value [org.eclipse.jgit.nls.NLS$1@30e52544]) and a value of type [org.eclipse.jgit.nls.NLS] (value [org.eclipse.jgit.nls.NLS@13f1ac70]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.

21-Feb-2017 23:08:29.560 INFO [http-nio-8080-exec-15] bitronix.tm.integration.tomcat55.BTMLifecycleListener.lifecycleEvent Shutting down Bitronix Transaction Manager

Michael Anstis

unread,
Feb 22, 2017, 5:10:14 AM2/22/17
to drools...@googlegroups.com
It just says "One or more listeners failed to start. Full details will be found in the appropriate container log file".. but that log is not included.

To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup+unsubscribe@googlegroups.com.

To post to this group, send email to drools...@googlegroups.com.

JDM

unread,
Feb 22, 2017, 8:58:39 AM2/22/17
to Drools Setup
Yeah, have been looking at that.  his brings me to my next question though... how do I find "the appropriate container log file".  :-)

JDM

unread,
Feb 22, 2017, 9:45:41 AM2/22/17
to Drools Setup
Based on what I am finding posted out there, I am betting I have something screwed up in my jar files.  Sounds like it is an issue when the same jar is in both your tomcat8/lib folder and also in the webapps WEB-INF/lib folder (I'm not seeing that), and also of course an issue if one is flat out missing.
Could you please audit my jar files and let me know if I have the recommended version of jar, all the jars needed for it to run, and in the right location?  (note: I am not using the machine for anything other than Drools server and wb)
Thank you again!  I feel close here...!  :-)

JAR FILES IN tomcat8/lib folder:
annotations-api.jarslf4j-api-1.7.2.jar
btm-2.1.4.jarslf4j-api-1.7.5.jar
btm-tomcat55-lifecycle-2.1.4.jartomcat8-el-3.0-api.jar
catalina.jartomcat8-jsp-2.3-api.jar
catalina-ant.jartomcat8-servlet-3.1-api.jar
catalina-ha.jartomcat-api.jar
catalina-storeconfig.jartomcat-coyote.jar
catalina-tribes.jartomcat-i18n-es.jar
commons-collections.jartomcat-i18n-fr.jar
commons-dbcp.jartomcat-i18n-ja.jar
commons-pool.jartomcat-jdbc.jar
geronimo-jta_1.1_spec-1.1.jartomcat-jni.jar
h2-1.3.176.jartomcat-juli.jar
jasper.jartomcat-util.jar
jasper-el.jartomcat-util-scan.jar
jasper-jdt.jartomcat-websocket.jar
javax.security.jacc-api-1.5.jarwebsocket-api.jar
kie-tomcat-integration-6.2.0.Final.jar

JAR FILES IN tomcat8/webapps/kie-wb/WEB-INF/lib folder:
abdera-core-1.1.3.jarguvnor-message-console-api-6.3.0.Final.jarkie-wb-common-datamodel-backend-6.3.0.Final.jar
abdera-i18n-1.1.3.jarguvnor-message-console-backend-6.3.0.Final.jarkie-wb-common-data-modeller-api-6.3.0.Final.jar
activation-1.1.1.jarguvnor-project-api-6.3.0.Final.jarkie-wb-common-data-modeller-backend-6.3.0.Final.jar
aether-api-1.0.0.v20140518.jarguvnor-project-backend-6.3.0.Final.jarkie-wb-common-data-modeller-core-6.3.0.Final.jar
aether-connector-basic-1.0.0.v20140518.jarguvnor-project-builder-6.3.0.Final.jarkie-wb-common-default-editor-api-6.3.0.Final.jar
aether-impl-1.0.0.v20140518.jarguvnor-rest-backend-6.3.0.Final.jarkie-wb-common-default-editor-backend-6.3.0.Final.jar
aether-spi-1.0.0.v20140518.jarguvnor-rest-client-6.3.0.Final.jarkie-wb-common-java-editor-api-6.3.0.Final.jar
aether-transport-file-1.0.0.v20140518.jarguvnor-services-api-6.3.0.Final.jarkie-wb-common-project-editor-api-6.3.0.Final.jar
aether-transport-http-1.0.0.v20140518.jarguvnor-services-backend-6.3.0.Final.jarkie-wb-common-project-editor-backend-6.3.0.Final.jar
aether-transport-wagon-1.0.0.v20140518.jarguvnor-structure-api-6.3.0.Final.jarkie-wb-common-project-explorer-api-6.3.0.Final.jar
aether-util-1.0.0.v20140518.jarguvnor-structure-backend-6.3.0.Final.jarkie-wb-common-project-explorer-backend-6.3.0.Final.jar
annotations-2.0.1.jarguvnor-workingset-api-6.3.0.Final.jarkie-wb-common-refactoring-api-6.3.0.Final.jar
ant-1.8.2.jarh2-1.3.168.jarkie-wb-common-refactoring-backend-6.3.0.Final.jar
ant-launcher-1.8.2.jarhamcrest-core-1.3.jarkie-wb-common-search-screen-api-6.3.0.Final.jar
antlr-2.7.7.jarhelix-core-0.6.5.jarkie-wb-common-search-screen-backend-6.3.0.Final.jar
antlr-runtime-3.5.jarhibernate-commons-annotations-4.0.2.Final.jarkie-wb-common-server-ui-api-6.3.0.Final.jar
aopalliance-1.0.jarhibernate-core-4.2.20.Final.jarkie-wb-common-server-ui-backend-6.3.0.Final.jar
args4j-2.0.12.jarhibernate-entitymanager-4.2.20.Final.jarkie-wb-common-services-api-6.3.0.Final.jar
avalon-framework-4.1.4.jarhibernate-jpa-2.0-api-1.0.1.Final.jarkie-wb-common-services-backend-6.3.0.Final.jar
avalon-framework-api-4.3.1.jarhibernate-validator-4.3.2.Final.jarkie-wb-common-social-home-page-api-6.3.0.Final.jar
batik-awt-util-1.6-1.jarhttpclient-4.3.6.jarkie-wb-common-social-home-page-backend-6.3.0.Final.jar
batik-bridge-1.6-1.jarhttpcore-4.3.3.jarlucene-analyzers-common-4.0.0.jar
batik-css-1.6-1.jari18n-taglib-6.3.0.Final.jarlucene-codecs-4.0.0.jar
batik-dom-1.6-1.jarjackson-annotations-2.4.0.jarlucene-core-4.0.0.jar
batik-ext-1.6-1.jarjackson-core-2.4.0.jarlucene-queries-4.0.0.jar
batik-extension-1.6-1.jarjackson-core-asl-1.9.9.jarlucene-queryparser-4.0.0.jar
batik-gui-util-1.6-1.jarjackson-databind-2.4.0.jarlucene-sandbox-4.0.0.jar
batik-gvt-1.6-1.jarjackson-jaxrs-1.9.9.jarmail-1.4.5.jar
batik-parser-1.6-1.jarjackson-mapper-asl-1.9.9.jarmaven-aether-provider-3.2.2.jar
batik-script-1.6-1.jarjackson-xc-1.9.9.jarmaven-artifact-3.2.2.jar
batik-svg-dom-1.6-1.jarjakarta-regexp-1.4.jarmaven-compat-3.2.2.jar
batik-svggen-1.6-1.jarjarjar-1.1.jarmaven-core-3.2.2.jar
batik-transcoder-1.6-1.jarjasypt-1.9.0.jarmaven-model-3.2.2.jar
batik-util-1.6-1.jarJavaEWAH-0.7.9.jarmaven-model-builder-3.2.2.jar
batik-xml-1.6-1.jarjavassist-3.18.1-GA.jarmaven-plugin-api-3.2.2.jar
bsh-2.0b5.jarjavax.inject-1.jarmaven-repository-metadata-3.2.2.jar
cal10n-api-0.7.7.jarjaxb-core-2.2.11.jarmaven-settings-3.2.2.jar
cdi-api-1.0-SP4.jarjaxb-impl-2.2.11.jarmaven-settings-builder-3.2.2.jar
closure-compiler-r1741.jarjaxb-xjc-2.2.11.jarmina-core-2.0.7.jar
commons-cli-1.2.jarjaxrs-api-2.3.10.Final.jarmvel2-2.2.6.Final.jar
commons-codec-1.4.jarjboss-annotations-api_1.1_spec-1.0.1.Final.jarneethi-3.0.2.jar
commons-collections-3.2.1.jarjboss-ejb-api_3.1_spec-1.0.2.Final.jarnetty-buffer-4.0.12.Final.jar
commons-compress-1.4.1.jarjboss-interceptors-api_1.1_spec-1.0.1.Final.jarnetty-codec-4.0.12.Final.jar
commons-configuration-1.6.jarjboss-jaxb-api_2.2_spec-1.0.4.Final.jarnetty-codec-http-4.0.12.Final.jar
commons-exec-1.3.jarjboss-jaxrs-api_1.1_spec-1.0.1.Final.jarnetty-common-4.0.12.Final.jar
commons-fileupload-1.3.1.jarjboss-jaxws-api_2.2_spec-2.0.2.Final.jarnetty-handler-4.0.12.Final.jar
commons-io-2.1.jarjboss-jms-api_1.1_spec-1.0.1.Final.jarnetty-transport-4.0.12.Final.jar
commons-jxpath-1.3.jarjboss-jstl-api_1.2_spec-1.0.6.Final.jaropencsv-2.3.jar
commons-lang-2.6.jarjboss-logging-3.1.4.GA.jarorg.eclipse.bpmn2-0.7.6-jboss.jar
commons-lang3-3.1.jarjbpm-audit-6.3.0.Final.jarorg.eclipse.emf.common-2.6.0.v20100614-1136.jar
commons-math-2.1.jarjbpm-bpmn2-6.3.0.Final.jarorg.eclipse.emf.ecore-2.6.0.v20100614-1136.jar
commons-math3-3.2.jarjbpm-bpmn2-emfextmodel-6.3.0.Final.jarorg.eclipse.emf.ecore.xmi-2.5.0.v20100521-1846.jar
cxf-api-2.7.16.jarjbpm-console-ng-asset-mgmt-backend-6.3.0.Final.jarorg.eclipse.jgit-3.7.1.201504261725-r.jar
cxf-rt-bindings-soap-2.7.16.jarjbpm-console-ng-business-domain-api-6.3.0.Final.jarorg.eclipse.sisu.inject-0.0.0.M5.jar
cxf-rt-bindings-xml-2.7.16.jarjbpm-console-ng-business-domain-backend-6.3.0.Final.jarorg.eclipse.sisu.plexus-0.0.0.M5.jar
cxf-rt-core-2.7.16.jarjbpm-console-ng-dashboard-api-6.3.0.Final.jarorg.osgi.compendium-4.3.1.jar
cxf-rt-databinding-jaxb-2.7.16.jarjbpm-console-ng-dashboard-backend-6.3.0.Final.jarorg.osgi.core-4.3.1.jar
cxf-rt-frontend-jaxws-2.7.16.jarjbpm-console-ng-executor-service-api-6.3.0.Final.jarplexus-cipher-1.4.jar
cxf-rt-frontend-simple-2.7.16.jarjbpm-console-ng-executor-service-backend-6.3.0.Final.jarplexus-classworlds-2.5.1.jar
cxf-rt-transports-http-2.7.16.jarjbpm-console-ng-generic-api-6.3.0.Final.jarplexus-component-annotations-1.5.5.jar
cxf-rt-ws-addr-2.7.16.jarjbpm-console-ng-generic-forms-api-6.3.0.Final.jarplexus-interpolation-1.19.jar
cxf-rt-ws-policy-2.7.16.jarjbpm-console-ng-human-tasks-api-6.3.0.Final.jarplexus-sec-dispatcher-1.3.jar
dashbuilder-common-0.3.3.Final.jarjbpm-console-ng-human-tasks-backend-6.3.0.Final.jarplexus-utils-3.0.17.jar
dashbuilder-dataset-api-0.3.3.Final.jarjbpm-console-ng-human-tasks-forms-api-6.3.0.Final.jarpoi-3.10.1.jar
dashbuilder-dataset-core-0.3.3.Final.jarjbpm-console-ng-human-tasks-forms-backend-6.3.0.Final.jarpoi-ooxml-3.10.1.jar
dashbuilder-dataset-csv-0.3.3.Final.jarjbpm-console-ng-human-tasks-forms-modeler-api-6.3.0.Final.jarpoi-ooxml-schemas-3.10.1.jar
dashbuilder-dataset-shared-0.3.3.Final.jarjbpm-console-ng-human-tasks-forms-modeler-backend-6.3.0.Final.jarprettytime-3.0.2.Final.jar
dashbuilder-dataset-sql-0.3.3.Final.jarjbpm-console-ng-process-runtime-api-6.3.0.Final.jarprotobuf-java-2.5.0.jar
dashbuilder-displayer-api-0.3.3.Final.jarjbpm-console-ng-process-runtime-backend-6.3.0.Final.jarquartz-1.8.5.jar
dashbuilder-scheduler-0.3.3.Final.jarjbpm-console-ng-process-runtime-forms-api-6.3.0.Final.jarreflections-0.9.10.jar
dashbuilder-server-all-0.3.3.Final.jarjbpm-console-ng-process-runtime-forms-backend-6.3.0.Final.jarreflections-3.2.0.Final.jar
dashbuilder-services-0.3.3.Final.jarjbpm-console-ng-rest-6.3.0.Final.jarresteasy-cdi-2.3.10.Final.jar
deltaspike-core-api-1.0.0.jarjbpm-console-ng-workbench-integration-api-6.3.0.Final.jarresteasy-jackson-provider-2.3.10.Final.jar
dom4j-1.6.1.jarjbpm-console-ng-workbench-integration-backend-6.3.0.Final.jarresteasy-jaxb-provider-2.3.10.Final.jar
drools-compiler-6.3.0.Final.jarjbpm-designer-api-6.3.0.Final.jarresteasy-jaxrs-2.3.10.Final.jar
drools-core-6.3.0.Final.jarjbpm-designer-backend-6.3.0.Final.jarroaster-api-2.13.0.Final.jar
drools-decisiontables-6.3.0.Final.jarjbpm-document-6.3.0.Final.jarroaster-jdt-2.13.0.Final.jar
drools-persistence-jpa-6.3.0.Final.jarjbpm-executor-6.3.0.Final.jarscannotation-1.0.3.jar
drools-pmml-6.3.0.Final.jarjbpm-executor-cdi-6.3.0.Final.jarserializer-2.7.1.jar
drools-scorecards-6.3.0.Final.jarjbpm-flow-6.3.0.Final.jarsisu-guice-3.1.0-no_aop.jar
drools-simulator-6.3.0.Final.jarjbpm-flow-builder-6.3.0.Final.jarslf4j-ext-1.7.2.jar
drools-templates-6.3.0.Final.jarjbpm-form-modeler-api-6.3.0.Final.jarsnakeyaml-1.8.jar
drools-wb-drl-text-editor-api-6.3.0.Final.jarjbpm-form-modeler-bpmn-form-builder-6.3.0.Final.jarsshd-core-0.12.0.jar
drools-wb-drl-text-editor-backend-6.3.0.Final.jarjbpm-form-modeler-common-6.3.0.Final.jarST4-4.0.7.jar
drools-wb-dsl-text-editor-api-6.3.0.Final.jarjbpm-form-modeler-data-modeler-6.3.0.Final.jarstax2-api-3.1.1.jar
drools-wb-dsl-text-editor-backend-6.3.0.Final.jarjbpm-form-modeler-document-6.3.0.Final.jarstax-api-1.0.1.jar
drools-wb-dtable-xls-editor-api-6.3.0.Final.jarjbpm-form-modeler-editor-api-6.3.0.Final.jaruberfire-all-0.7.3.Final.jar
drools-wb-dtable-xls-editor-backend-6.3.0.Final.jarjbpm-form-modeler-editor-backend-6.3.0.Final.jaruberfire-api-0.7.3.Final.jar
drools-wb-enum-editor-api-6.3.0.Final.jarjbpm-form-modeler-form-editor-6.3.0.Final.jaruberfire-apps-api-0.7.3.Final.jar
drools-wb-enum-editor-backend-6.3.0.Final.jarjbpm-form-modeler-form-provider-6.3.0.Final.jaruberfire-apps-backend-0.7.3.Final.jar
drools-wb-factmodel-editor-api-6.3.0.Final.jarjbpm-form-modeler-renderer-api-6.3.0.Final.jaruberfire-backend-api-0.7.3.Final.jar
drools-wb-factmodel-editor-backend-6.3.0.Final.jarjbpm-form-modeler-renderer-backend-6.3.0.Final.jaruberfire-backend-cdi-0.7.3.Final.jar
drools-wb-globals-editor-api-6.3.0.Final.jarjbpm-form-modeler-request-dispatcher-6.3.0.Final.jaruberfire-backend-server-0.7.3.Final.jar
drools-wb-globals-editor-backend-6.3.0.Final.jarjbpm-form-modeler-service-core-6.3.0.Final.jaruberfire-commons-0.7.3.Final.jar
drools-wb-guided-dtable-editor-api-6.3.0.Final.jarjbpm-form-modeler-static-resources-6.3.0.Final.jaruberfire-commons-editor-api-0.7.3.Final.jar
drools-wb-guided-dtable-editor-backend-6.3.0.Final.jarjbpm-form-modeler-ui-6.3.0.Final.jaruberfire-commons-editor-backend-0.7.3.Final.jar
drools-wb-guided-dtree-editor-api-6.3.0.Final.jarjbpm-human-task-audit-6.3.0.Final.jaruberfire-io-0.7.3.Final.jar
drools-wb-guided-dtree-editor-backend-6.3.0.Final.jarjbpm-human-task-core-6.3.0.Final.jaruberfire-layout-editor-api-0.7.3.Final.jar
drools-wb-guided-rule-editor-api-6.3.0.Final.jarjbpm-human-task-jpa-6.3.0.Final.jaruberfire-layout-editor-backend-0.7.3.Final.jar
drools-wb-guided-rule-editor-backend-6.3.0.Final.jarjbpm-human-task-workitems-6.3.0.Final.jaruberfire-metadata-api-0.7.3.Final.jar
drools-wb-guided-scorecard-editor-api-6.3.0.Final.jarjbpm-kie-services-6.3.0.Final.jaruberfire-metadata-backend-lucene-0.7.3.Final.jar
drools-wb-guided-scorecard-editor-backend-6.3.0.Final.jarjbpmmigration-0.14.jaruberfire-metadata-commons-io-0.7.3.Final.jar
drools-wb-guided-template-editor-api-6.3.0.Final.jarjbpm-persistence-jpa-6.3.0.Final.jaruberfire-nio2-api-0.7.3.Final.jar
drools-wb-guided-template-editor-backend-6.3.0.Final.jarjbpm-process-svg-6.3.0.Final.jaruberfire-nio2-fs-0.7.3.Final.jar
drools-wb-scorecard-xls-editor-api-6.3.0.Final.jarjbpm-query-jpa-6.3.0.Final.jaruberfire-nio2-jgit-0.7.3.Final.jar
drools-wb-scorecard-xls-editor-backend-6.3.0.Final.jarjbpm-runtime-manager-6.3.0.Final.jaruberfire-nio2-model-0.7.3.Final.jar
drools-wb-test-scenario-editor-api-6.3.0.Final.jarjbpm-services-api-6.3.0.Final.jaruberfire-runtime-plugins-api-0.7.3.Final.jar
drools-wb-test-scenario-editor-backend-6.3.0.Final.jarjbpm-services-cdi-6.3.0.Final.jaruberfire-runtime-plugins-backend-0.7.3.Final.jar
drools-wb-workitems-editor-api-6.3.0.Final.jarjbpm-shared-services-6.3.0.Final.jaruberfire-security-api-0.7.3.Final.jar
drools-wb-workitems-editor-backend-6.3.0.Final.jarjbpm-simulation-6.3.0.Final.jaruberfire-server-0.7.3.Final.jar
drools-workbench-models-commons-6.3.0.Final.jarjbpm-workitems-6.3.0.Final.jaruberfire-server-all-0.7.3.Final.jar
drools-workbench-models-datamodel-api-6.3.0.Final.jarjcip-annotations-1.0.jaruberfire-servlet-security-0.7.3.Final.jar
drools-workbench-models-guided-dtable-6.3.0.Final.jarjcl-over-slf4j-1.7.2.jaruberfire-testing-utils-0.7.3.Final.jar
drools-workbench-models-guided-dtree-6.3.0.Final.jarjdom-1.1.3.jaruberfire-widgets-properties-editor-api-0.7.3.Final.jar
drools-workbench-models-guided-scorecard-6.3.0.Final.jarjgroups-3.2.13.Final.jaruberfire-widgets-service-api-0.7.3.Final.jar
drools-workbench-models-guided-template-6.3.0.Final.jarjoda-time-1.6.2.jaruberfire-widgets-service-backend-0.7.3.Final.jar
drools-workbench-models-test-scenarios-6.3.0.Final.jarjs-1.7R2.jarvalidation-api-1.0.0.GA.jar
ecj-4.3.1.jarjsch-0.1.50.jarvelocity-1.7.jar
encoder-1.1.jarjson-20090211.jarwagon-http-2.0.jar
errai-bus-3.2.0.Final.jarjsoup-1.7.1.jarwagon-http-shared4-2.0.jar
errai-cdi-client-3.2.0.Final.jarjsr305-1.3.9.jarwagon-provider-api-1.0.jar
errai-codegen-3.2.0.Final.jarjunit-4.11.jarweld-api-1.1.Final.jar
errai-common-3.2.0.Final.jarkie-api-6.3.0.Final.jarweld-core-1.1.30.Final.jar
errai-config-3.2.0.Final.jarkie-ci-6.3.0.Final.jarweld-se-core-1.1.30.Final.jar
errai-ioc-3.2.0.Final.jarkie-identity-session-provider-6.3.0.Final.jarweld-servlet-core-1.1.30.Final.jar
errai-ioc-bus-support-3.2.0.Final.jarkie-internal-6.3.0.Final.jarweld-spi-1.1.Final.jar
errai-marshalling-3.2.0.Final.jarkie-remote-common-6.3.0.Final.jarwoodstox-core-asl-4.2.0.jar
errai-security-server-3.2.0.Final.jarkie-remote-jaxb-6.3.0.Final.jarwsdl4j-1.6.3.jar
errai-weld-integration-3.0.6.Final.jarkie-remote-services-6.3.0.Final.jarxalan-2.7.1.jar
fop-0.95.jarkie-remote-ws-common-6.3.0.Final.jarxercesImpl-2.9.1.jar
freemarker-2.3.19.jarkie-server-api-6.3.0.Final.jarxmlbeans-2.3.0.jar
gson-1.7.2.jarkie-server-client-6.3.0.Final.jarxmlgraphics-commons-1.4.jar
guava-13.0.1.jarkie-server-controller-api-6.3.0.Final.jarxmlpull-1.1.3.1.jar
guvnor-asset-mgmt-api-6.3.0.Final.jarkie-server-controller-impl-6.3.0.Final.jarxml-resolver-1.2.jar
guvnor-asset-mgmt-backend-6.3.0.Final.jarkie-server-controller-rest-6.3.0.Final.jarxmlschema-core-2.0.2.jar
guvnor-asset-mgmt-project-6.3.0.Final.jarkie-uberfire-social-activities-api-6.3.0.Final.jarxpp3_min-1.1.4c.jar
guvnor-inbox-api-6.3.0.Final.jarkie-uberfire-social-activities-backend-6.3.0.Final.jarxstream-1.4.7.jar
guvnor-inbox-backend-6.3.0.Final.jarkie-wb-common-contributors-api-6.3.0.Final.jarxz-1.0.jar
guvnor-m2repo-editor-api-6.3.0.Final.jarkie-wb-common-contributors-backend-6.3.0.Final.jarzkclient-0.1.jar
guvnor-m2repo-editor-backend-6.3.0.Final.jarkie-wb-common-datamodel-api-6.3.0.Final.jarzookeeper-3.3.4.jar

Vnay kndl

unread,
Aug 3, 2017, 3:59:33 AM8/3/17
to Drools Setup
Hi,

I'm facing same issue.. Could you please let us know how you resolved the issue.

Thanks !

JDM

unread,
Aug 3, 2017, 8:42:48 AM8/3/17
to Drools Setup
Unfortunately, my resolution was giving up on using Drools. I never got it running. Sorry.

Alberto Flores

unread,
Aug 24, 2017, 7:20:52 AM8/24/17
to Drools Setup
I highly recommend trying the 7.2.0.Final version of KIE-Workbench. This has a much simpler installation process (No JTA - Bitronix) to install in tomcat. I was able to get it running fairly quickly.

I also tried the 6.x version and decided (after a few mishaps) to not mess around with JTA configuration as it created all sort of questions for me (e.g. why the need of JTA when this is a standalone war in tomcat).

Marcos Savoury

unread,
Aug 24, 2017, 6:04:06 PM8/24/17
to Drools Setup
Hi Alberto,

I ran into several issues while trying to set up the kie workbench on tomcat 8, particularly with the JTA jars.  Did you by any chance happen to create a docker image?

Michael B

unread,
Aug 25, 2017, 6:14:33 AM8/25/17
to Drools Setup
All this images inherit from JBoss Wildfly 10.1.0.Final.
We don't have on Docker Hub images for Tomcat 8

Michael B

Alberto Flores

unread,
Aug 25, 2017, 7:49:51 AM8/25/17
to Drools Setup
Hi Marcos,

I haven't created a docker image (I guess I should for my own sake). I just tried it out of the box in a clean tomcat installation and it worked fine. The war file has a readme file with 2 steps (I think step 2 has 4 additional sub-steps). And it worked well. I'll see if I have time to create a docker image or write up what I did on my blog/github page.

PS: I did not set any JTA jars (that was not part of the readme file instructions). I think 7.2.0.Final uses git and maven exclusively so I'm still wondering why you would need JTA in general.

Shrirang Edgaonkar

unread,
Sep 12, 2017, 3:46:59 AM9/12/17
to Drools Setup
Hi Albertos,

   I installed Workbenach and KIEServer on tomcat 8 successfully. Now how do I run the rules in drl in the Kie container using a java client. I searched through the documentation but in vain. The API is different than the 6.x version.

Any help would be appreciated.

Thanks and Regards,
Shrirang Edgaonkar 

Maciej Swiderski

unread,
Sep 12, 2017, 4:11:52 AM9/12/17
to drools...@googlegroups.com
what do you mean by java client? kie server client?

Maciej
-- 
You received this message because you are subscribed to the Google Groups "Drools Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to drools-setup...@googlegroups.com.
To post to this group, send email to drools...@googlegroups.com.

Shrirang Edgaonkar

unread,
Sep 12, 2017, 6:36:27 AM9/12/17
to Drools Setup
Yes. Kie server client using java api. Typically we do it as follows in 6.x version.

String username = "analyst";
String password = "analyst";
String container = "kieContainer";
String session = "kieSession";

KieServicesConfiguration config = KieServicesFactory.newRestConfiguration(url, username, password);

KieServicesClient client  = KieServicesFactory.newKieServicesClient(config);
RuleServicesClient ruleClient = client.getServicesClient(RuleServicesClient.class);
      ........

Maciej Swiderski

unread,
Sep 12, 2017, 7:45:13 AM9/12/17
to drools...@googlegroups.com
this is valid code, but wrong URL - points to workbench instead of kie server

Maciej

Shrirang Edgaonkar

unread,
Sep 12, 2017, 8:08:26 AM9/12/17
to Drools Setup
That was copy\paste issue. 
For the correct url. 
too it gives 404. I checked the context from the tomcat manager too. I can see the context name.

This is the modified code.

String username = "kieserver";
String password = "kieserver";
String container = "kieContainer";
String session = "kieSession";

KieServicesConfiguration config = KieServicesFactory.newRestConfiguration(url, username, password);

KieServicesClient client  = KieServicesFactory.newKieServicesClient(config);
RuleServicesClient ruleClient = client.getServicesClient(RuleServicesClient.class);

Shrirang Edgaonkar

unread,
Sep 12, 2017, 8:29:43 AM9/12/17
to Drools Setup
And the issue does not end here. The rest of the code for kie server client seems to be different from 6.x. For e.g. org.drools.core.command.impl.GenericCommand is not part of 7.2.0 drools core. 

Maciej Swiderski

unread,
Sep 12, 2017, 9:01:58 AM9/12/17
to drools...@googlegroups.com
the url is again not the right one - now you’re pointing to controller instead of kie server. Make sure you use the right url to the right service.

when it comes to commands that indeed changed but should be completely transparent to you unless you mix version - kie server client from v6 tries to talk to kie server v7.

Maciej

Shrirang Edgaonkar

unread,
Sep 12, 2017, 1:23:54 PM9/12/17
to Drools Setup
Hi Maciej,

   Now i got it all right but unable to get the CONTANERID. Kindly suggest.

String username = "kieserver";
String password = "kieserver";
String container = "kieContainer";
String session = "kieSession";

KieServicesConfiguration config = KieServicesFactory.newRestConfiguration(url, username, password);

KieServicesClient client  = KieServicesFactory.newKieServicesClient(config);
RuleServicesClient ruleClient = client.getServicesClient(RuleServicesClient.class);
ServiceResponse<KieContainerResourceList> sr = client.listContainers();
KieContainerResource  kr = sr.getResult().getContainers().get(0);
FireAllRulesCommand f = new FireAllRulesCommand();
ServiceResponse<ExecutionResults>  serviceResponse = ruleClient.executeCommandsWithResults(kr.getContainerId(), f);
ExecutionResults er = serviceResponse.getResult();
System.out.println(er);

Maciej Swiderski

unread,
Sep 13, 2017, 1:11:20 AM9/13/17
to drools...@googlegroups.com
kie container is the one you deployed there. You can view of what is deployed and running via this endpoint:

Shrirang Edgaonkar

unread,
Sep 14, 2017, 12:25:50 AM9/14/17
to Drools Setup
In the workbench i have added a server template and a container. Though I am unable to see any containers.
My servers out is as following.

<response type="SUCCESS" msg="Kie Server info">
<kie-server-info>
<capabilities>KieServer</capabilities>
<capabilities>BRM</capabilities>
<capabilities>CaseMgmt</capabilities>
<capabilities>BPM-UI</capabilities>
<capabilities>BRP</capabilities>
<capabilities>DMN</capabilities>
<capabilities>BPMQueries</capabilities>
<messages>
<content>
Error when initializing server extension of type jBPM KIE Server extension due to Unable to create EntityManagerFactory due to Unable to find jta data source under name java:jboss/datasources/ExampleDS
</content>
<severity>ERROR</severity>
<timestamp>2017-09-14T09:29:52.259+05:30</timestamp>
</messages>
<messages>
<content>
Server KieServerInfo{serverId='b5d1b753-6748-392c-a472-0ecc5cfd8cb4', version='7.2.0.Final', location='http://localhost:8230/kie-server/services/rest/server'}started successfully at Thu Sep 14 09:29:52 IST 2017
</content>
<severity>INFO</severity>
<timestamp>2017-09-14T09:29:52.628+05:30</timestamp>
</messages>
<name>KieServer@/kie-server-7.2.0.Final-webc</name>
<id>b5d1b753-6748-392c-a472-0ecc5cfd8cb4</id>
<version>7.2.0.Final</version>
</kie-server-info>
</response> 

is 
<response type="SUCCESS" msg="List of created containers">
<kie-containers/>
</response>

What am i doing wrong here ? Kindly help.
wb.png

Shrirang Edgaonkar

unread,
Sep 14, 2017, 1:05:23 AM9/14/17
to Drools Setup
I think java:jboss/datasources/ExampleDS is the issue. I am using Tomcat and the Datasource URL is that of jboss. Which datasource does it need here ?

Shrirang Edgaonkar

unread,
Sep 27, 2017, 10:51:00 AM9/27/17
to Drools Setup
Maciej,

 Please help.

Kumar Bhatia

unread,
Jun 9, 2018, 11:10:00 AM6/9/18
to Drools Setup
I am still facing deployment issues. Is there anyone who can guide by screen sharing? I work with Accenture and my phone number is +91 9769321013. I am badly stuck in this from last 15 days.
Reply all
Reply to author
Forward
0 new messages