GitHub user FabianChanton opened a pull request: https://github.com/apache/camel/pull/959
CAMEL-9824 Add URI parameter to declare server named queues As described in CAMEL-9824 We need a possibility to declare server named queues. To achieve this I would like to add a new URI parameter "serverNamedQueue". If this parameter is set, the queue is declared via `channel.queueDeclare();` instead of `channel.queueDeclare(queue, endpoint.isDurable(), false, endpoint.isAutoDelete(), arguments);` The drawback of this solution is that several other options (isDurable etc) are ignored. If someone has a different idea on how to solve this I am more than happy to hear it! You can merge this pull request into a Git repository by running: $ git pull https://github.com/FabianChanton/camel master Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/959.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #959 ---- commit f822e750e19a5c703945ad4d7d1a21ff8ae4ef00 Author: Fabian Chanton <fabian.chan...@misurio.ch> Date: 2016-04-26T13:06:51Z CAMEL-9824 Add URI parameter to declare server named queues ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---