- 
        1. Re: Sharing libskaobe Feb 8, 2007 4:54 AM (in response to rlamie)Hi, 
 put the helper-jar in the ear and fill the Classpath-element in META-INF of the war and ejb-jar with this entry.
 Peter
- 
        2. Re: Sharing libsrlamie Feb 8, 2007 5:06 AM (in response to rlamie)Thank you. 
 Another pretty basic question, but my servlets lookup ejbs through jndi, so I need interfaces of my ejbs to be known at the web container level. Is it automatic ? Or i need to package interfaces in a jar and put it in the WEB-INF/lib of my .war ?
- 
        3. Re: Sharing libskaobe Feb 8, 2007 7:26 AM (in response to rlamie)Hi, 
 you could use the following packaging:
 - bean classes and bean resources in YOUR_EJB.jar
 - home and component interfaces in YOUR_EJB_client.jar
 Then you can put the client.jar into your ear, add the reference to the manifest.mf of your web-application (or give it to any other client you wish) and you can be sure, that anyone using your ejb does only need to know the client interfaces.
 Peter
 
    