7 Replies Latest reply on Apr 16, 2008 2:13 PM by kconner

    Problem while shutting down JBoss Server with JBossESB

      Hi,

      We have developed an application in JBossESB using org.jboss.soa.esb.actions.routing.http.HttpRouter.

      Here is the application's scenario:

      Browser ----> HTTP ---> JBossESB(on JBoss AS) ----> HTTP ---> Servlet (JBoss AS) ---> Stateless Session Bean(JBoss AS)

      Environment:
      ========
      JBossAS 4.2.2.GA
      OS: Redhat Enterprise Linux 4
      JBossESB downloaded from: tfennelly_https workspace in SVN"http://anonsvn.labs.jboss.com/labs/jbossesb/workspace/tfennelly_https/."

      Application is working fine, but while shuting down the JBoss Application Server, the following exception has occurred:

      21:15:27,513 INFO [HypersonicDatabase] Database standalone closed clean
      21:15:27,522 WARN [NewMsgsWorker] Interrupted waiting for new msg check
      java.lang.InterruptedException
       at java.lang.Object.wait(Native Method)
       at java.lang.Object.wait(Object.java:485)
       at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
       at EDU.oswego.cs.dl.util.concurrent.SemaphoreControlledChannel.take(SemaphoreControlledChannel.java:131)
       at org.jboss.resource.adapter.mail.inflow.NewMsgsWorker.run(NewMsgsWorker.java:75)
       at org.jboss.resource.work.WorkWrapper.execute(WorkWrapper.java:204)
       at org.jboss.util.threadpool.BasicTaskWrapper.run(BasicTaskWrapper.java:275)
       at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:756)
       at java.lang.Thread.run(Thread.java:619)
      21:15:27,632 INFO [TransactionManagerService] Stopping recovery manager
      


      Please give us some pointer to resolve this exception. Any help with this regard will be highly appreciated.

      Thanks,
      Puneet

        • 1. Re: Problem while shutting down JBoss Server with JBossESB
          marklittle

          How did you shutdown AS and how reproducible is this?

          • 2. Re: Problem while shutting down JBoss Server with JBossESB

            Hi,

            Thanks for your reply
            I shutdown the JBoss Application server by pressing Ctrl+C.
            The exception comes every time I shutdown my server.

            Thanks,
            Puneet

            • 3. Re: Problem while shutting down JBoss Server with JBossESB
              tfennelly

              First off... the ESB is not yet "certified" to run on v4.2.2.GA of JBoss AS. But anyway....

              Do you get this exception on shutdown of a clean AS?
              Do you get this exception on shutdown of a clean AS + JBoss ESB Components (minus Your.esb)?
              Do you get this exception on shutdown of a clean AS + JBoss ESB Components + Your.esb?

              • 4. Re: Problem while shutting down JBoss Server with JBossESB

                Hi tfennelly,

                Thanks for you help.

                I got this exception on Shutting down of Clean AS + JBoss ESB Components + My .esb.

                Secondly, I have tried to write my application with new HttpRouter. Its working fine.

                I went through the documentation as well as the javadoc of Jboss4.2.1GA but have not been able to find any router other than HttpRouter.

                Is HttpRouter the most efficient way to call an external Http page using JBoss ESB or else is there any other router available? Please help.

                My senerio is:
                [Browser]---http--->[JBossESB(on JBossAS)]-----http--->[Servlet]----->[EJB3]

                Thanks,
                Puneet

                • 5. Re: Problem while shutting down JBoss Server with JBossESB
                  tfennelly

                  Can you answer the other questions too please...

                  Do you get this exception on shutdown of a clean AS?
                  Do you get this exception on shutdown of a clean AS + JBoss ESB Components (minus Your.esb)?

                  As for the Router questions, please create another thread and we can discuss that there.

                  • 6. Re: Problem while shutting down JBoss Server with JBossESB

                    Hi tfennelly,

                    Thanks for your valuable time, your inputs helped me a lot in my work.

                    I have checked the Application Server for all three scenarios. The exception is raised for last two scenarios i.e.:
                    Clean AS + JBossESB Components and
                    Clean AS + JBossESB Components + My .esb file.

                    Secondly, I observed that if we hot deploy the JBossESB components by executing 'ant deploy' command from <jbossesb_home>/install directory, server throws an exception while deploying jbpm package.

                    11:04:14,383 INFO [JBoss4ESBDeployer] create esb service, jbpm.esb
                    11:04:14,414 INFO [CallbackQueue] Bound to JNDI name: queue/CallbackQueue
                    11:04:14,430 INFO [JbpmConfiguration] using jbpm configuration resource 'jbpm.cfg.xml'
                    11:04:14,539 INFO [StaleObjectLogConfigurer] stale object exceptions will be hidden from logging
                    11:04:14,633 WARN [ServiceController] Problem starting service jboss:service=h2,database=jbpmDB
                    java.lang.ClassNotFoundException: No ClassLoaders found for: org.h2.Driver
                     at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:212)
                     at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:521)
                     at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:415)
                     at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
                     at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
                     at java.lang.Class.forName0(Native Method)
                     at java.lang.Class.forName(Class.java:247)
                     at org.jboss.internal.soa.esb.dependencies.H2Database.getConnection(H2Database.java:302)
                    


                    The exception may be thrown because JBoss Application Server couldn’t load the h2.jar at runtime which is required for org.h2.Driver class.

                    Please have a look.

                    Thanks,
                    Puneet


                    • 7. Re: Problem while shutting down JBoss Server with JBossESB
                      kconner

                      The original stack trace is caused by the mail JCA adapter and is not a part of the ESB. Are you using this adapter in your application?

                      You will not be able to 'hot deploy' the core services using that script as the h2.jar is placed into the /lib directory of the server instance. The jars in this directory are not hot deployable. If you were to place the jar in that directory before starting up the application server then it should work.

                      Kev