2 Replies Latest reply on Jun 4, 2010 6:17 AM by sbutt

    upgrade Jboss AS and ESB

    sbutt

      Hi Team,

                  I'm currently running:

       

      jboss-4.2.3.GA
      jbossESB 4.4.GA
      and want to upgrade to:
      jboss-5.0
      jbossESB 4.8
      And my question is what I should be needing to change in my existing esb projects. For example in esb, queues, topics, deployment descriptors etc, to adjust to the new versions?
      Thanks.
        • 1. Re: upgrade Jboss AS and ESB
          tfennelly

          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

            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>