The queue you created is a core queue.

The preferred way to create JMS destinations is using the JMSServerManagerImpl 
on top of the MessagingServer you created:


  | Configuration configuration = new ConfigurationImpl(); 
  | configuration.setPersistenceEnabled(false); 
  | configuration.setSecurityEnabled(false); 
  | configuration.setAcceptorConfigurations(transports); 
  | server = Messaging.newMessagingServer(configuration);
  | JMSServerManager manager =new JMSServerManagerImpl(server);
  | 
  | manager.createQueue(...);
  | manager.createTopic(...);
  | 
  | manager.start(); // will also start the underlying MessagingServer
  | 

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

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

Reply via email to