docker run -p 8080:8080 -p 8001:8001 -d -e JAVA_OPTS="-Djava.net.preferIPv4Stack=true" --name jbpm-workbench jboss/jbpm-workbench-showcase:latest
docker run -p 8180:8080 -d --name kie-server -e JAVA_OPTS="-Djava.net.preferIPv4Stack=true" --link jbpm-workbench:kie_wb jboss/kie-server-showcase:latest
<response type="SUCCESS" msg="List of created containers">
<kie-containers/>
</response>
docker logs <kie-server container id>
13:27:14,414 ERROR [org.kie.server.remote.rest.jbpm.QueryDataResource] (default task-10) Unexpected error during processing Can't get metadata on specified data set: jbpmProcessInstances: org.dashbuilder.dataset.exception.DataSetLookupException: Can't get metadata on specified data set: jbpmProcessInstances
...
Caused by: org.h2.jdbc.JdbcSQLException: Column "LOG.SLA_DUE_DATE" not found; SQL statement:
...
14:17:18,246 ERROR [io.undertow.request] (default task-11) UT005023: Exception handling request to /kie-server/services/rest/server/containers/aoeu_1.0.2: org.jboss.resteasy.spi.UnhandledException: java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer.<init>(Lcom/fasterxml/jackson/databind/JavaType;Lcom/fasterxml/jackson/databind/jsontype/TypeIdResolver;Ljava/lang/String;ZLjava/lang/Class;)
...
Caused by: java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer.<init>(Lcom/fasterxml/jackson/databind/JavaType;Lcom/fasterxml/jackson/databind/jsontype/TypeIdResolver;Ljava/lang/String;ZLjava/lang/Class;)
version: '3.4'
services:
jbpm:
image: jboss/jbpm-workbench-showcase
ports:
- '8080:8080'
- '8081:8081'
- '9990:9990'
networks:
- backoffice
volumes:
- type: bind
source: ./deployment/local/config/niogit
target: /opt/jboss/wildfly/bin/.niogit
kie-server:
image: jboss/kie-server-showcase
ports:
- '8180:8080'
links:
- jbpm:kie_wb
networks:
- backoffice
networks:
internet:
backoffice:
7.7.0.Final-3$ docker --versionDocker version 18.03.0-ce, build 0520e24$ lsb_release -rdcDescription: Ubuntu 16.04.4 LTSRelease: 16.04Codename: xenial$ uname -aLinux macbuntu 4.13.0-38-generic #43~16.04.1-Ubuntu SMP Wed Mar 14 17:48:43 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
--
You received this message because you are subscribed to the Google Groups "jBPM Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jbpm-developme...@googlegroups.com.
To post to this group, send email to jbpm-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jbpm-development/b9933ffc-e958-468a-937a-3a0b7b132246%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/jbpm-development/F256A887-1C5E-4C1E-86D2-D83C9CE40BB4%40gmail.com.
On 18 Apr 2018, at 11:50, L. Preston Sego III <lt....@gmail.com> wrote:Is the version mismatch the issue?
How is it that kie can communicate with jbpm across containers?(Is it networking? Shared folders?)
On 18 Apr 2018, at 15:04, NullVoxPopuli <lt....@gmail.com> wrote:
I specified the versions of the images in the docker-compose file.
I'm still not seeing any containers at:
http://localhost:8180/kie-server/services/rest/server/containers
what am I doing wrong?none of the jbpm stuff is visible via the api?
--
You received this message because you are subscribed to the Google Groups "jBPM Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jbpm-developme...@googlegroups.com.
To post to this group, send email to jbpm-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jbpm-development/89b26ed0-c424-48a9-8fe2-4e1ed6b748ea%40googlegroups.com.
that's just this button yeah?
jbpm_1 | 13:23:02,218 INFO [org.drools.compiler.kie.builder.impl.KieRepositoryImpl] (default task-18) KieModule was added: MemoryKieModule[releaseId=org.sil:hello-world:0.0.4]
[jboss@af5210f7df72 0.0.4]$ pwd
/opt/jboss/.m2/repository/org/sil/hello-world/0.0.4
[jboss@af5210f7df72 0.0.4]$ ls
_remote.repositories hello-world-0.0.4.jar hello-world-0.0.4.pom
version: '3.4'
services:
jbpm:
build:
context: ./source/workflow-engine/jbpm-workbench
dockerfile: Dockerfile
ports:
- '8080:8080'
- '8081:8081'
- '9990:9990'
networks:
- backoffice
volumes:
- type: volume
source: jbpm-m2
target: /opt/jboss/.m2
- type: bind
source: ./deployment/local/config/niogit
target: /opt/jboss/wildfly/bin/.niogit
kie-server:
build:
context: ./source/workflow-engine/kie-server
dockerfile: Dockerfile
ports:
- '8180:8080'
links:
- jbpm:kie_wb
networks:
- backoffice
volumes:
- type: volume
source: jbpm-m2
target: /opt/jboss/.m2
volumes:
jbpm-m2:
networks:
internet:
backoffice: