When I deploy a jar file with an EJB "fr.coming.ejb.MyEjb.class" I got the folowing
compilation error:
Auto-deploying WhipEjb.jar... StatefulSessionBeanWrapper0.java:7: Interface com
.evermind.server.ejb.fr. coming.ejb.MyEjb of class StatefulSessionBeanWrapper14 not
found.
public class StatefulSessionBeanWrapper0 extends com.evermind.server.ejb.Statef
ulSessionEJBObject implements fr.coming.ejb.MyEjb
It seems that it is caused by the existence of com.evermind.server.ejb.fr.class in
orion.jar (version 1.0.3b) and the following generated code:
import com.evermind.server.ejb.*;
public class StatefulSessionBeanWrapper0
extends com.evermind.server.ejb.StatefulSessionEJBObject
implements fr.coming.ejb.MyEjb {
.............
}
The fr.class doesn't follow java coding standard (class name's first letter
capitalized)... in consequence it's impossible to use orion in fr country!
Have you a solution other than renaming all my packages (more than 500 files!)?
Stan Truffaut.