Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.31 KB | None | 0 0
  1. <camel:endpoint id="ftp" uri="ftp://[email protected]:123/get/password=secret&binary=false" />
  2. <camel:endpoint id="queue" uri="activemq:queue:parts" />   
  3.  
  4. <camel:route>
  5.   <camel:from ref="ftp">
  6.    <split streaming="true">
  7.     <tokenize token="\n" group="1000"/>
  8.     <to ref="queue"/>
  9.   </split>
  10. </camel:route>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement