Hi the list,
In the class org.apache.naming.factory.EjbFactory
The exception line 136 is not forwarded to the parent class.
We have :
if (factoryClass != null) {
try {
factory = (ObjectFactory) factoryClass.newInstance();
} catch(Throwable t) {
}
and it should be:
if (factoryClass != null) {
try {
factory = (ObjectFactory) factoryClass.newInstance();
} catch(Throwable t) {
NamingException ex = new NamingException
("Could not load resource factory class");
ex.initCause(t);
throw ex;
}
}
So the user can know what is his configuration problem.
--
Fabien Carrion
() Campagne du ruban ASCII -- Contre les mails en html
/\ contre les pieces-jointes Microsoft
Web: http://fcarrion.carrion.free.fr/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]