2 Replies Latest reply on Jan 28, 2003 5:05 PM by riekhof

    AppServer neutral EAR?

      I'm considering using Tomcat-JBoss as my DEV environment, then deploying the resulting EAR to our TEST and PROD environments which are currently slotted to be Websphere 5.0 (that choice was not mine...).

      I'm wondering what problems we could run into using this scheme. I'm not too worried about the WAR file, but I'm less confident about the EJB jars. Would we just need to include both the JBoss and Websphere specific deployment descriptors in the EJB jars to get the same EAR to run happily in either JBoss or Websphere?

      Is there anything JBoss specific in other files in a typical EAR?

        • 1. Re: AppServer neutral EAR?
          mlindhout

          In every WAR and EAR, you need to provide vendor specific descriptors. But it's no problem to provide two descriptors. Each appserv will look at it's own.

          To easy the writing of the DD's, you may think about using XDoclet (xdoclet.sourceforge.net). This tool allows you to provide the meta information (DD's are META-INF, aren't they?) in you Java code using the @ tags. XDoclet can extract this info and generate the WebSphere / JBoss / Orion DD's.

          Martijn

          • 2. Re: AppServer neutral EAR?

            I have built and deployed an ear to JBoss. I had to include the jboss.xml for my EJBs and the jboss-web.xml for my WAR, but no other JBoss specific files AFAIK.

            Now, I'm just about ready to try and deploy it on WebSphere. I'm very inexperienced with Websphere 5.0, but it is my understanding that I can just deploy the .ear, and Websphere will generate default war and ejb descriptors for me during the deployment process. Can anyone confirm or deny this?

            One thing I noticed about JBoss (3.0.4,tomcat) on my journey from war + ejb to ear was this: hot deploying wars and ejbs separately after a build, assuring the exact same compiled code in each, caused the shared classes between the war and ejbs to somehow get out of sync. I had to bounce JBoss. But, this didn't happen when hot deploying my ear. Just thought that was interesting...