Re: Getting route info problems

2013-10-08 Thread Christian Posta
Why can't you use the RouteDefinition object that gets returned as Claus mentioned? It has all of the outputs you're looking for. http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/model/RouteDefinition.html#getOutputs() On Tue, Oct 8, 2013 at 9:28 AM, l.muscari wrote: >

Re: Getting route info problems

2013-10-08 Thread Christian Mueller
Can you please subscribe to the discussion forum as we describe here [1]. Otherwise all your mails has to be moderate by the Camel team and is may missed/delayed. [1] http://camel.apache.org/discussion-forums.html Thanks in advance, Christian -- View this message in context: http://camel.4654

Re: Getting route info problems

2013-10-08 Thread l.muscari
yes but this two data structure doesn't resolve the endpoints which are associated, getRoute get only the "inbound " endpoint and not the outbound. -- View this message in context: http://camel.465427.n5.nabble.com/Getting-route-info-problems-tp5741123p5741146.html Sent from the Camel - Users

Re: Getting route info problems

2013-10-08 Thread Claus Ibsen
There is API on CamelContext to get route information, getRoute getRouteDefinition This allows you to get the runtime route and the model route. On Tue, Oct 8, 2013 at 1:10 PM, l.muscari wrote: > UPDATE: > > i'am able to resolve every endpoints loaded in camel context. and in this > way i get

Re: Getting route info problems

2013-10-08 Thread l.muscari
UPDATE: i'am able to resolve every endpoints loaded in camel context. and in this way i get every "from" and "to" information i need. the problem now is associate the single endpoints to the relative route. i do something like this: Collection e ; e = context.getEndpoints(); then visit e with i