Camel CXFRS + Swagger integration

2018-02-26 Thread Okello Nelson
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

camel toD with replyTo in URI specifying IBM MQ queue manager

2018-02-26 Thread Paul Broughton Spida Solutions
 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

Re: Camel CXFRS + Swagger integration

2018-02-26 Thread Okello Nelson
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