On Fri, May 22, 2009 at 12:49 AM, Peter Thygesen
<[email protected]> wrote:
> Thx
> I had already tried with try catch.. but with out luck.. the documentation
> on camel.apache.org is to be honest.. a little confusing and messed up. When
> looking at the examples it is not always clear enough which version they
> apply to.
Hi

Yeah we hear you. I really do wish that Apache didnt use Confluence
for wiki documentation for its projects.
I would have loved an offline wiki that we have in the SVN with the
source code as well.

Then we could publish documentation for each release that wouldn't intermix.

For what is worth it. There are the manualts that is snapshot of the
wiki when the release was done.
So you can look at the Camel 1.5.0 manual (pdf and html) and you
wouldnt then get bugged with all the new 2.0 updates in the wiki.

But you found the camel community and we are here to help.

You can also find us at IRC
http://camel.apache.org/irc-room.html

>
> here is how i did in case some other newbie would like to know. (valid for
> Camel 1.5.0)
>
>  <camelContext id="file-pump" xmlns="
> http://activemq.apache.org/camel/schema/spring";>
>    <route>
>      <from uri="file://files-to-upload?consumer.delay=60000"/>
>      <try>
>        <to uri="ftp://ca...@localhost?password=camel"/>
>        <catch>
>          <exception>java.lang.Exception</exception>
>          <to uri="file://todo"/>
>        </catch>
>      </try>
> </route>
> </camelContext>
>
>
> cheers,
> Peter
>



-- 
Claus Ibsen
Apache Camel Committer

Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Reply via email to