1 Reply Latest reply on Aug 22, 2005 3:52 PM by michael_c_small

    EAR deployment failure ...

    bill.burke

      what does your application.xml look like? Maybe list the .par module before the .ejb3 module?

        • 1. Re: EAR deployment failure ...
          michael_c_small

          Here's my application.xml:

          <application>
           <module>
           <ejb>tasconline.par</ejb>
           </module>
           <module>
           <ejb>tasconline.ejb3</ejb>
           </module>
          </application>
          


          Note that it is pointed to the application_1_3.dtd

          In my stateless session beans, I'm referring to the entity manager using:

          @Stateless
          public class SomeBean extends SomeInterface {
          
           @PersistenceContext(unitName="tasconline")
           public void setEntityManager(EntityManager em) { ... }
          
          }