"richard.opalka(a)jboss.com" wrote : BTW, how would you deal with the classloader
issue Adrian?
The hunt the real classloader game. ;-)
| ClassLoader cl = ...;
| ClassLoader parent = cl.getParent();
| while (cl instanceof org.jboss.classloading.spi.RealClassLoader == false &&
parent != null)
| cl = parent;
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4160620#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...