4 Replies Latest reply on Jul 13, 2012 11:51 AM by jrawlings1980

    Can you view the entire camel context in design tab?

    jrawlings1980

      Hi, I am trying to view multiple routes in the design view but the IDE only seems to display one route at a time by selecting from the outline.  The different routes reuse code so I want a diagram that represents this reuse.  Is that possible?

       

      Example, route one, two and three all use four but I can't find a way to view all EIPs together on a single view.

       

           <camelContext trace="false" id="blueprintContext"
                xmlns="http://camel.apache.org/schema/blueprint">
                <route id="one">
                     <from uri="jetty"></from>
                     <transform>
                          <simple></simple>
                     </transform>
                     <to uri="direct:smpp"></to>
                </route>
                <route id="two">
                     <from uri="activemq"></from>
                     <to uri="direct:smpp"></to>
                </route>
                <route id="three">
                     <from uri="activemq"></from>
                     <transform>
                          <simple></simple>
                     </transform>
                     <to uri="direct:smpp"></to>
                </route>
                <route id="four">
                     <from uri="direct:smpp"></from>
                     <to uri="smpp:user@host.etc"></to>
                </route>
           </camelContext>