ammon rha

Greenhorn
+ Follow
since Feb 18, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by ammon rha

I am passing from makes happy to jboss3.2.3. I have a problem with JMS. The code is following:
....
....
String jndiUrl = "jnp://brusamo:1099";
java.util.Properties props = new Properties();
props.setProperty(Context.PROVIDER_URL, jndiUrl);
props.setProperty(InitialContext.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
props.setProperty (Context.URL_PKG_PREFIXES,"org.jboss.naming rg.jnp.interfaces");

.....
...
Object tmp = ctx.lookup("ConnectionFactory");
tconFactory = (TopicConnectionFactory) tmp;
tcon = tconFactory.createTopicConnection();
During the lookup with ConnectionFactory I have always NullPointerException. I do not use res-ref or other in jboss-web.xml and/or jboss.xml the client is an applet. You can help me
Tanks
20 years ago