Re: Camel 2.19 or 3.0 : lookup endpoint by custom id

2016-09-17 Thread Luca Burgazzoli
Ah great, thx Claus On Saturday, 17 September 2016, Claus Ibsen wrote: > I managed to find the JIRA ticket > https://issues.apache.org/jira/browse/CAMEL-7778 > > On Sat, Sep 17, 2016 at 11:31 AM, Claus Ibsen > wrote: > > Hi > > > > Yeah we have a JIRA ticket about this, so the Camel endpoint re

Re: Camel 2.19 or 3.0 : lookup endpoint by custom id

2016-09-17 Thread Claus Ibsen
I managed to find the JIRA ticket https://issues.apache.org/jira/browse/CAMEL-7778 On Sat, Sep 17, 2016 at 11:31 AM, Claus Ibsen wrote: > Hi > > Yeah we have a JIRA ticket about this, so the Camel endpoint reigistry > has an id as well. > Currently only the url is registered. > > Endpoints in Cam

Re: Camel 2.19 or 3.0 : lookup endpoint by custom id

2016-09-17 Thread Claus Ibsen
Hi Yeah we have a JIRA ticket about this, so the Camel endpoint reigistry has an id as well. Currently only the url is registered. Endpoints in Camel don't really have the notion of an id, only url. Its when you use Spring or Blueprint etc then they have an endpoint factory that create endpoints

Camel 2.19 or 3.0 : lookup endpoint by custom id

2016-09-17 Thread Luca Burgazzoli
Hello everyone, I'm wondering if it could make sense to register enpoints in context's registry having an option so set theirs id; The aim is to have a common way to identify an endpoint other by uri, so that: - @Produce(ref = "myEndpontId") would work the same way in any context - People willing