so, in console I found that source is named java:/Count and if I call ...
InitialContext iniCtx = new InitialContext(props);
Context ejbCtx = (Context)iniCtx.lookup("java:Count");I still receiving
java.lang.reflect.UndeclaredThrowableException
at $Proxy0.lookup(Unknown Source)but, if I should call new InitialContext() instead of InitialContext(props), haw I can set INITIAL_CONTEXT_FACTORY and PROVIDER_URL?
Thanks Jiri
Adrian Brock wrote:
You should use new InitialContext(); when access java:comp/env
Regards, Adrian
On Wed, 2003-08-20 at 14:23, Jiri Chaloupka wrote:
Hallo, I am learning about ejbs ... I have some ejb deployed on JBoss and client for this, where is:
************************************************
Properties props = System.getProperties();
props.setProperty(Context.INITIAL_CONTEXT_FACTORY,
"org.jboss.naming.HttpNamingContextFactory");
props.setProperty(Context.PROVIDER_URL,
"http://localhost/invoker/ReadOnlyJNDIFactory");
InitialContext iniCtx = new InitialContext(props);
Context ejbCtx = (Context)iniCtx.lookup("java:comp/env/ejb");
...
************************************************
------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0 _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
