from DSL to support multiple endpoints
--------------------------------------

                 Key: CAMEL-1229
                 URL: https://issues.apache.org/activemq/browse/CAMEL-1229
             Project: Apache Camel
          Issue Type: Improvement
          Components: camel-core
    Affects Versions: 1.5.0
            Reporter: Claus Ibsen
             Fix For: 1.5.1, 2.0.0


Currently you can kinda do it in Java DSL (I dont think its possible in Spring 
DSL)

{code}
from("foo").from("bar").to("log:hello")
{code}

But we should be able to do it as
{code}
from("foo", "bar").to("log:hello")
{code}

Some end-users is requesting it, and he is using Spring DSL.

I created this ticket to not forget about it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to