I also created an META-INF/ejb-jar.xml too: <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd" version="3.0"> <enterprise-beans> <session> <ejb-name>PersonneFacadeImpl</ejb-name> <business-local>com.training.domain.ejb.facade.PersonneFacadeLocal</business-local> <business-remote>com.training.domain.ejb.facade.PersonneFacaderemote</business-remote> <ejb-class>com.training.domain.ejb.facade.impl.PersonneFacadeImpl</ejb-class> <session-type>Stateless</session-type> <transaction-type>Container</transaction-type> </session> </enterprise-beans> </ejb-jar>
-- View this message in context: http://openejb.979440.n4.nabble.com/Problem-to-create-initialContext-tp4668512p4668518.html Sent from the OpenEJB Dev mailing list archive at Nabble.com.
