I've replaced Spring's CachingConnectionFactory with my own implementation
that simply takes Solace implementation and triggers its method:
    protected Connection doCreateConnection() throws JMSException {
        try {
            return factory.createTopicConnection();
        } catch (MessageChannelException e) {
            throw new RuntimeException(e);
        }
    }
It doesn't cache anything, it's very primitive, but at least it works
stably. If I find what was wrong with spring implementation, I'll reply
here. Though I'm not sure I'll have time for further investigation.

stanislav bashkirtsev

--
View this message in context: 
http://camel.465427.n5.nabble.com/Camel-doesn-t-listen-to-JMS-channel-tp4263097p4264040.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to