[ https://issues.apache.org/jira/browse/CAMEL-9824?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15695486#comment-15695486 ]
ASF GitHub Bot commented on CAMEL-9824: --------------------------------------- Github user FabianChanton closed the pull request at: https://github.com/apache/camel/pull/959 > Add possibility to let the server generate a name for a queue > ------------------------------------------------------------- > > Key: CAMEL-9824 > URL: https://issues.apache.org/jira/browse/CAMEL-9824 > Project: Camel > Issue Type: Improvement > Components: camel-rabbitmq > Affects Versions: 2.17.0 > Reporter: Fabian Chanton > Assignee: Andrea Cosentino > Priority: Minor > > This problem is similar to CAMEL-9815 > For a project we have to declare a queue without a name. The server then > auto-generates a random name and passes it back. > If we do not specify a queue name, RabbitMQEndpoint defines a random name for > us. This however is not allowed on the server. > I locally tried a fix for RabbitMQDeclareSupport, where instead of using > {code:java} > channel.queueDeclare(queue, endpoint.isDurable(), false, > endpoint.isAutoDelete(), arguments); > channel.queueBind(queue, exchange, emptyIfNull(routingKey)); > {code} > i declare the queue like this: > {code:java} > DeclareOk declareOk = channel.queueDeclare(); > endpoint.setQueue(declareOk.getQueue()); > {code} > This has some drawbacks, as it completely ignores endpoint.isDurable(), > endpoint.isAutoDelete() etc. and even the routing key is ignored. > I don't know how to best add a possibility to declare server named queues. -- This message was sent by Atlassian JIRA (v6.3.4#6332)