| Author |
jndi settings for statefull session bean
|
Mohamed Amri
Greenhorn
Joined: Feb 17, 2006
Posts: 11
|
|
In the following code, I could get reference to the stateless session bean "CalculatorBean", but if the bean is stefull, I could not get a reference to it using the same JNDI settings, how should I change the following code in order to be able to get a reference to the statefull bean? I am using Jboss Thanks Properties props = new Properties(); props.put("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory"); props.put("java.naming.factory.url.pkgs","org.jboss.naming rg.jnp.interfaces"); props.put("java.naming.provider.url","localhost:1099"); InitialContext ic = new InitialContext(props); CalculatorRemote calculator = (CalculatorRemote) ic.lookup("example/CalculatorBean/remote");
|
 |
Bhaskar Rao
Greenhorn
Joined: Apr 25, 2005
Posts: 23
|
|
Hi, As far as I know, type of bean (stateless or stateful) or any other for that matter has nothing to do with JNDI. There might be some other issue.
|
 |
Sandip Sarkar
Ranch Hand
Joined: Nov 25, 2007
Posts: 55
|
|
Can you please put in your jboss.xml and ejb-jar.xml files? How you look up does not have to change. It is all in what you have put in these files. Thanks, Sandip
|
 |
 |
|
|
subject: jndi settings for statefull session bean
|
|
|