It seems your JMS code is trying to publish to a Queue
// By default Spring Integration uses Queues, but if you set this to true you
// will send to a PubSub+ topic destination
jmsTemplate.setPubSubDomain(false);
So if you’re trying to send to “**myQueue**” then somewhere in the publish exception list (because the default is Disallow) you should have an entry of “**#P2P/QUE/myTopic**”. Could you double check that too?
thanks,
Ari