Hi,

      In a standalone spring application context the following is perfectly
fine:


        <c:camelContext id="endpoints">
                <c:endpoint id="source" uri="file://source" />
                <c:endpoint id="target" uri="file://target" />
        </c:camelContext>
        
        <c:camelContext id="routes">
                <c:route>
                        <c:from ref="source" />
                        <c:to ref="target" />
                </c:route>
        </c:camelContext>


       That is, the configured camelContexts can see each other. Is it
possible to achieve this in Karaf?  (i.e. "endpoints" goes in a xml and
"routes" goes in another one)

        I've tried with no success, the xml containing "routes" can not see
the endpoints defined in "endpoints" (in another xml)

Regards,
Thiago Souza

-- 
View this message in context: 
http://camel.465427.n5.nabble.com/Visibility-between-camel-contexts-tp2255423p2255423.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to