This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: JNDI for Session beans in Weblogic 10.3joff Jul 6, 2009 5:04 AM (in response to joff)Ok, finally cracked it... so for future reference: in web.xml <ejb-local-ref> <ejb-ref-name>bookit/ejb/InterviewControllerBean/local</ejb-ref-name> <ejb-ref-type>Session</ejb-ref-type> <local>bookit.controller.InterviewController</local> </ejb-local-ref> components.properties jndiPattern=java:comp/env/bookit/ejb/#{ejbName}/localwhere the bean is @Stateful @Name( "interviewController" ) public class InterviewControllerBean implements InterviewController @Local public interface InterviewController 
- 
        2. Re: JNDI for Session beans in Weblogic 10.3chris.simons Aug 31, 2009 7:19 PM (in response to joff)Thanks for posting this follow-up. 
 
    