Classloader problem / Service isolation
---------------------------------------

                 Key: AXIS2-3524
                 URL: https://issues.apache.org/jira/browse/AXIS2-3524
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
    Affects Versions: 1.3
            Reporter: Manuel Linsmayer


I have two versions of the same library in AXIS2_HOME/lib and inside my AAR in 
the lib folder. Inside my service class, I'm trying to load the version from 
the AAR file using the following code:

  ClassLoader cl = this.getClass().getClassLoader();
  Class testClass = Class.forName("package.Test", true, cl);
  package.Test testObj = (package.Test) testClass.newInstance();

The classloader always picks the version from AXIS2_HOME/lib.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to