https://bz.apache.org/bugzilla/show_bug.cgi?id=69615

--- Comment #7 from Dushyant Shinde <[email protected]> ---
We are using the URLClassLoader class to dynamically load JARs using reflection
(see the code below). Will your fix work with URLClassLoader?

   URLClassLoader webappClassLoader = (URLClassLoader)
Thread.currentThread().getContextClassLoader();
   Method method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class); 
   method.setAccessible(true);                                                  
   method.invoke(webappClassLoader, new Object[]{jarUrl});

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to