This content has been marked as final.
Show 2 replies
-
1. Re: use of createQueue
jmesnil May 23, 2012 6:09 AM (in response to richard916)Richard Williams wrote:
hi.
I am using JMS management to manage hornetq as Management Example shows.Here is a problem,
after I create a queue with
JMSManagementHelper.putOperationInvocation(m, "jms.server", "createQueue", "dynamicQueue","");
Last parameter is to configure the JNDI bindings for the created queue. You passed an empty string. Pass the name of the JNDI binding and that'll work.
-
2. Re: use of createQueue
richard916 May 23, 2012 9:24 AM (in response to jmesnil)thank you jeff, it works!