When running the jar
I change my jboss-client.xml as you indicated.
And I got : MySession not bound
Now I reput BeanSessionBean into my jndiname and change
| @RemoteBinding(jndibinding="MySession")
|
| to
|
| @Remote
|
In my main application, I try to see what's in the InitialContext by :
| Context c = new InitialContext();
| Context ce = (Context)c.lookup("java:comp/env/ejb");
| //Object b =
c.lookup("java:comp/env/ejb/BeanSessionBean");
|
| NamingEnumeration li = ce.list("");
| while(li.hasMore())
| {
| NameClassPair a= (NameClassPair)li.next();
| System.out.println("ClassName="+a.getClassName()+"
Name="+a.getName());;
| }
|
in the output, I got:
anonymous wrote :
| ClassName=javax.naming.LinkRef Name=BeanSessionBean
|
there's my BeanSessionBean in the InitialContext.
But when I retry to get my Beans by:
| Context c = new InitialContext();
| Context ce = (Context)c.lookup("java:comp/env/ejb");
| Object b =
c.lookup("java:comp/env/ejb/BeanSessionBean");
|
I got something like:
BeanSessionBean not bound
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984524#3984524
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984524
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user