Is this intentional?
int separator = rawPath.indexOf('/');
String filePath = rawPath.substring(separator+1);
String loaderKey = rawPath.substring(0, separator+1);
....
ClassLoader loader = (ClassLoader) loaderMap.get(loaderKey);
According to the log, my JVM tried to look up
org/xml/sax/SAXException.class. So it throught that "org/" was the
loaderKey and "xml/sax/SAXException.class" was the class name.
Additionally, Shouldn't this line read:
String loaderKey = rawPath.substring(0, separator);
Please let me know if it is a bug, so I can stop trying to fix it on the
client side.
Thanks,
David Green
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development