playing around with EJB3 (first itme)

I create a SimpleBean:

  | @Stateless
  | public class SimpleBean {
  |   public void aMethod() {
  |     // log something ...
  |   }
  | }
  | 

  | @Remote
  | public interface Simple {
  |   public void aMethod();
  | }
  | 

If I deploy this, JBoss will give a message that it is deployed.
in case of JBoss it should deployed with the full classname 
(SimpleBean.class.name()) for lookup.

but I can't lookup with a JUnit test outside the JBoss

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

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

Reply via email to