1 Reply Latest reply on May 20, 2005 7:06 AM by schrouf

    How to enable application loading in ISOLATION Mode..?

    r_sugu

      Hi,
      I am using Jboss3.2.2 and jdk 1.4.2.07, i am trying to install Adobe formserver on top this installation for which it requires certain jar files based on the installation procedures i followed the steps and it works fine with the samples given by adobe. Now when i am creating my own ear/war file for deploying my application which also has some of the jar files which adobe is using and it seems there is clash between these jar files so jboss throws different types of exceptions each time i start the application and hence adobe has asked me to enable the application to load in isolation mode. Please help me in doing so by explaning me the steps to be followed in achieving the application isolation.

      Take care
      Sugandhan
      rsugandhan@hp.com

        • 1. Re: How to enable application loading in ISOLATION Mode..?
          schrouf

          Have a look into your "jboss-service.xml" (at least this is the place in JBoss-3.2.6, I don't know if it's the same place for 3.2.2). Look for EARDeployer.

           <!-- EAR deployer (mobilcom: activate EAR classpath isolation) -->
           <mbean code="org.jboss.deployment.EARDeployer" name="jboss.j2ee:service=EARDeployer">
           <!-- Isolate all ears in their own classloader space -->
           <attribute name="Isolated">true</attribute>
           <!-- Enforce call by value to all remote interfaces -->
           <attribute name="CallByValue">true</attribute>
           </mbean>
          
          


          Also have a look into the JBossWiki on scoped deployment and JBoss classloader architecture

          Regards
          Ulf