3 Replies Latest reply on Aug 26, 2003 5:10 PM by khooke

    JOnAS Application

    raymadigan

      I have a large J2EE application that was written for the JOnAS Open Source Application server and wonder if anyone can tell me if JBos can support it.

      I have a Tomcat, Struts WEB Application behind an Apache Web Server on one machine, or many because it uses JK for load balancing.

      On the EJB Server I run multiple instances that need to be able to talk to beans in other instances. These instances can run on one or many machines. Each instance shares a few common beans, differentiated by thier JNDI name, and beans that are unique to the particular application.

      I was using JOnAS until I uncovered a bug where one instance cannot talk to another, a bug in the protocol layer. I need to get this application running quickly if I switch.

      Has anyone converted a JOnAS app to a JBoss app before.

        • 1. Re: JOnAS Application
          khooke

          If you used Jonas application server specific APIs then obviously you'll need to convert these to use equivalent APIs on JBoss.

          If your application is a vanilla J2EE app and you are not using any other 3rd party APIs, then it should be a relatively easy job to deploy it to JBoss.

          Why don't you just deploy it (do you have it bundled as war and/or ear files?) - drop them into a deploy dir on JBoss and see what happens... the quantity and type of exceptions you get will give you an indication of how much work you'll have to do to get it to work on JBoss.

          Kevin Hooke

          • 2. Re: JOnAS Application
            raymadigan

            It is deployed as an ear. The problem that I see is that all of the vendor specific deployment descriptors will need changed. I have been crusing this site for a while and can't find a tutorial, or an example that shows what the deployment descriptors look like.

            Do you know if there is any documentation on the JBoss ejbjar ant task.

            I also am looking for some document on what has to get included in the client jar files, in terms of stubs and skels.

            I guess I will have to buy one of these books before I spend the the time porting.

            • 3. Re: JOnAS Application
              khooke

              If you download and install JBoss you will find DTDs of the deployment descriptors in the docs dir.

              Buy the download docs, and these should give you all the info you need.

              Kevin