RE: azure-blob with JavaDSL: can't set URI options with bean or any other method

2019-04-19 Thread Marx, Peter
: Andrea Cosentino Sent: Friday, April 19, 2019 2:24 PM To: users@camel.apache.org Subject: Re: azure-blob with JavaDSL: can't set URI options with bean or any other method ClientBean is the type of element you're trying to set in the registry. But you need to pass a CludBlockBlob. So yo

Re: azure-blob with JavaDSL: can't set URI options with bean or any other method

2019-04-19 Thread Andrea Cosentino
ClientBean is the type of element you're trying to set in the registry. But you need to pass a CludBlockBlob. So you may need to do something like myregistry.put("clientreg", new ClientBean().client()); and then use #clientreg in your route. the azureBlobClient parameter expects a CloudBlob in

RE: azure-blob with JavaDSL: can't set URI options with bean or any other method

2019-04-19 Thread Marx, Peter
can't set URI options with bean or any other method Hi You should use # to refer to a bean in the registry, eg to do a lookup. So use #client On Fri, Apr 19, 2019 at 10:56 AM Marx, Peter wrote: > > Hi, > > I want to add a route for the camel-azure component 2.23.0 in pur

Re: azure-blob with JavaDSL: can't set URI options with bean or any other method

2019-04-19 Thread Claus Ibsen
Hi You should use # to refer to a bean in the registry, eg to do a lookup. So use #client On Fri, Apr 19, 2019 at 10:56 AM Marx, Peter wrote: > > Hi, > > I want to add a route for the camel-azure component 2.23.0 in pure JavaDSL > with no Spring. Documentation > https://github.com/apache/camel