Hi all,

  I am trying to lookup my seesion bean using context.lookup
Code is like this
EJB3StandaloneBootstrap.boot(null);
Context ctx=getInitalContext()
ctx.lookup("ConsumerProfileSession")




 static InitialContext getInitialContext() throws Exception
           {
              Hashtable props = getInitialContextProperties();
              return new InitialContext(props);
           }
          private static Hashtable getInitialContextProperties()
           {
              Hashtable props = new Hashtable();
              props.put("java.naming.factory.initial", 
"org.jnp.interfaces.LocalOnlyContextFactory");
              props.put("java.naming.factory.url.pkgs", 
"org.jboss.naming:org.jnp.interfaces");
              return props;
           }


Error is cant bind 

Is it need any more additional information to be add about Session bean in xml 
files?

Please help me
Thanks
Muneer






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

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

Reply via email to