Hide Forgot
Date of First Response: 2009-06-12 12:13:10 project_key: SOA The default configuration in the jbpm-jpdl-3.2.5SP5 package only contains the queue configuration for JBossMQ in /deploy/server/default/deploy/jbpm/jbpm-destinations-service.xml file. This breaks the deployment on JBoss EAP 4.3 which comes with JBM. An alternative config file should be included in the distribution: <mbean code="org.jboss.jms.server.destination.QueueService" name="jboss.mq.destination:service=Queue,name=JbpmJobQueue" xmbean-dd="xmdesc/Queue-xmbean.xml"> <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends> </mbean> <mbean code="org.jboss.jms.server.destination.QueueService" name="jboss.mq.destination:service=Queue,name=JbpmCommandQueue" xmbean-dd="xmdesc/Queue-xmbean.xml"> <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends> </mbean>
Link: Added: This issue depends JBPM-2288
From an IRC chat with Alejandro: <aguizar> ldimaggi_: it does not affect an installation that uses the job executor <aguizar> ldimaggi_: it would only affect one that used JMS Accordingly, linking this as being dependent on SOA-1310
Link: Added: This issue depends SOA-1310
There is no need to do this if we are going with the ESB inflow integration as we define our own queues, albeit with the same names. We are defining the following <mbean code="org.jboss.jms.server.destination.QueueService" name="jboss.esb.destination:service=Queue,name=JbpmJobQueue" xmbean-dd="xmdesc/Queue-xmbean.xml"> <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends> </mbean> <mbean code="org.jboss.jms.server.destination.QueueService" name="jboss.esb.destination:service=Queue,name=JbpmCommandQueue" xmbean-dd="xmdesc/Queue-xmbean.xml"> <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends> </mbean> <mbean code="org.jboss.jms.server.destination.QueueService" name="jboss.esb.destination:service=Queue,name=JbpmDLQ" xmbean-dd="xmdesc/Queue-xmbean.xml"> <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends> </mbean>
We are using the ESB inflow integration solution for 4.3 CP02, so this is no longer an issue.