Closed LupusUmbrae closed 7 years ago
Bit more arguing with it and i got it to work.
I had to set the CamundaReactor plugin to be provided
(I had to put it into a Global Module for Wildfly), and tell WildFly that my webapp needed CamundaReactor
jboss-deployment-structure.xml
:
<jboss-deployment-structure>
<deployment>
<dependencies>
<module name="org.camunda.bpm.extension.reactor.camunda-bpm-reactor-core" />
</dependencies>
</deployment>
</jboss-deployment-structure>
Hi Robin
Sorry for the Late response, Busy Day. Dös that Mean your Problem is Solved?
Jan
Von meinem iPhone gesendet
Am 11.11.2016 um 16:38 schrieb Robin Moss notifications@github.com<mailto:notifications@github.com>:
Bit more arguing with it and i got it to work.
I had to set the CamundaReactor plugin to be provided (I had to put it into a Global Module for Wildfly), and tell WildFly that my webapp needed CamundaReactor
jboss-deployment-structure.xmlhttps://docs.jboss.org/author/display/WFLY10/Class+Loading+in+WildFly:
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/camunda/camunda-bpm-reactor/issues/47#issuecomment-259983875, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AAxr0JyPRtS7-1K92_J74SsFBK8l5k5sks5q9IvPgaJpZM4KvrN8.
Hi Yes that does fix my issue, thanks
Hi Yes that does fix my issue, thanks
Hi, I'm using the docker image: camunda/camunda-bpm-platform:wildfly-7.13.0 and I can't install this plugin... You can help me?
What did I do: clone reactor, mvn clean install OK Install extension with jar and module.xml in /camunda/modules/org/camunda/bpm/extension/reactor/
You can help me?
Hello,
Just trying to get this plugin working inside Wildfly, and to programatically add a listener from a web app. However i think i'm hitting an issue with Wildfly using different class loaders.
The
instanceof
check to find the plugin is failing despite theplugins
variable containing theReactorProcessEnginePlugin
Debugging and running some arbitrary code against it shows:
At the moment the Wildfly instance of starting the process engine at boot time, and my webapp is attempting to get hold of the
ProcessEngine
and the reactor to add a listener:Any thought's on how to fix this?