To be more precise, the exception occurs in the JmsMessageServiceFactoryImpl on 
line 74:

 public JmsMessageServiceFactoryImpl() {
  |     try {
  |       Context initial = new InitialContext();
  |       //next line fails when creating jbpmContext from ejb before you login 
to the jbpm-console
  |       connectionFactory = (ConnectionFactory) 
initial.lookup(connectionFactoryJndiName);
  |       destination = (Destination) initial.lookup(destinationJndiName);
  |       initial.close();
  |     }
  |     catch (NamingException e) {
  |       log.error("jms object lookup problem", e);
  |       throw new JbpmException("jms object lookup problem", e);
  |     }
  |   }

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

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

Reply via email to