Hi,

I build a Calculatrice Stateless EJB3, 


  | 
  | @Stateless
  | public class CalculatriceBean implements CalculatriceRemote {
  |     
  |     /** Creates a new instance of CalculatriceBean */
  |     public CalculatriceBean() {
  |     }
  | 
  |     public int additionner(int x, int y) {        
  |         return x+y;
  |     }
  |     
  | }
  | 

The appication is deployed in JBOSS nicely.

The name of my ear is EnterpriseApplication1.ear and I can't find the JNDI 
naming convention for getting this Bean 


  | Object ref = ctx.lookup("EnterpriseApplication1/Calculatrice/remote");
  |             CalculatriceRemote calc = 
(CalculatriceRemote)PortableRemoteObject.narrow(ref,CalculatriceRemote.class);  
          
  | 

does not work well it should regarding the documentation ....

Any Hints ?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4016107#4016107

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4016107
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to