Hi, I have a toD element in my route which sends to a jms Queue which is
provided by IBM MQ. I have the CamelJMSDestinationName set to the queue and a
uri which looks similar to the folowing
wmq:queue:placeholder?preserveMessageQos=true&replyTo=myQM/myTestQ&exchangePattern=inOut&replyToType=shar
I've read in a number of places that the way to integrate Swagger with
Camel CXFRS is by using `Swagger2Feature`. I already have a working Camel
CXFRS service whose API docs I'd like to access through a URL.
>From what I've seen this is supposed to be done like this:
```
Swagger2Feature feat
Hi
I think there is some destination resolver spi you can configure on
the component/endpoint where you can add your java code to build the
queue name using the IBM MQ client api.
On Mon, Feb 26, 2018 at 12:42 PM, Paul Broughton Spida Solutions
wrote:
> Hi, I have a toD element in my route wh
Sorry for the bother. I found a solution:
- Defining a features bean
- Adding swagger2feature to it
- Proving the new feature list to cxfrs component.
```
@Bean(name = "features")
public List features() {
ServerFactoryBean sfb = new ServerFactoryBean();
...
Swagger2Feature fe