Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-16 Thread enalposi
Yes, I am dumbing down the scenario and don't mention recovery, threading, etc to focus on the concrete issues how to link up a temp channel. The client specified a requirement of one defined queue per service - I currently have a workaround with one queue and a topic but it's not fully meeting the

Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-16 Thread Christian Schneider
I think that jms:temp:queue sounds like a bug as I have no idea how this could work. Creating temp queues works in this way in the jms api: Destination tempDest = session.createTemporaryQueue(); So I think there is no way to tell the jms server the name of the queue. The following article could

Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-16 Thread enalposi
Brackets were removed from the example in the previous post: (jms:temp:queue:[mytempqueuename]) -- View this message in context: http://camel.465427.n5.nabble.com/Issue-with-JMS-Temp-Queues-Tibco-EMS-tp3425694p3779620.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-16 Thread enalposi
Thanks Christian - In a nutshell and simplified view, ignoring threads etc, what we need is similar to request/response but keeping the temp response channel open as long as we wish, to send several messages. In fact I don't understand the purpose of a Camel Temp queue if different parties don't c

Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-16 Thread Christian Schneider
Hi, I think temp queues won´t work for your case as I think you can not explicitly set the name of a temp queue. It is rather like queueName = createTempQueue() so you would need to transfer the name to the peer. One thing is that you could use dynamic queues. These can be created on the fly

Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-14 Thread enalposi
Hallo Christian - Right, we are using temp queues for responses, but need more control than standard req/resp. The response may not just be synchronous but result in several messages (this is not uncommon in the financial/analytics world and in general helps creating dynamic interfaces that incre

Re: Issue with JMS Temp Queues (Tibco EMS)

2011-03-11 Thread Christian Schneider
Hi, typically temp queues are only used for reply messages and are transparently created by camel. In your case you seem to define the temp queue directly in the endpoint. I don´t think that will work. Can you send the configuration of the routes? Christian Am 11.03.2011 21:05, schrieb enal