This content has been marked as final.
Show 2 replies
-
1. Re: upgrade Jboss AS and ESB
tfennelly Jun 4, 2010 5:07 AM (in response to sbutt)Apart from reconfiguring your JMS descriptors from JBossMQ to their JBoss Messaging equivalents... I don't think there's anything else really. Best thing to do is give it a try and see what shows up.
For reworking the JMS descriptors.... see the quickstarts... they have descriptors for both JBossMQ and JBM.
-
2. Re: upgrade Jboss AS and ESB
sbutt Jun 4, 2010 6:17 AM (in response to tfennelly)i compared 'jbmq-queue-service' in both JbossESB-4.4 and JbossESB-4.8. but found no difference.
quickstarts/Hello_World example (JbossESB-4.4)
<?xml version="1.0" encoding="UTF-8"?> <server> <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_helloworld_Request_esb"> <depends optional-attribute-name="DestinationManager"> jboss.mq:service=DestinationManager </depends> </mbean> <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_helloworld_Request_gw"> <depends optional-attribute-name="DestinationManager"> jboss.mq:service=DestinationManager </depends> </mbean> </server>
quickstarts/Hello_World example (JbossESB-4.8)
<?xml version="1.0" encoding="UTF-8"?> <server> <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_helloworld_Request_esb"> <depends optional-attribute-name="DestinationManager"> jboss.mq:service=DestinationManager </depends> </mbean> <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_helloworld_Request_gw"> <depends optional-attribute-name="DestinationManager"> jboss.mq:service=DestinationManager </depends> </mbean> </server>