> -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > + if(servClass == null) > + { > + servClass = > Class.forName(className.toString()); > + classCache.put(className, servClass); > + }
What about using the context classloader - in my experience this is more reliable. There is a good article about the differences here: http://www.javageeks.com/Papers/ClassForName/ClassForName.pdf Cheers, Steve. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
