Skip to content

Instantly share code, notes, and snippets.

@alexandreaquiles
Created February 15, 2011 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexandreaquiles/828327 to your computer and use it in GitHub Desktop.
Save alexandreaquiles/828327 to your computer and use it in GitHub Desktop.
Examples using Apache Camel's DSL for building routes
from("jetty:http://localhost/myapp/myservice").process(new MyBookService());
from("smpp://smppclient@localhost:2775?password=password&enquireLinkTimer=3000&transactionTimer=5000&systemType=consumer").to("bean:foo");
from("imap://admin@mymailserver.com password=secret&processOnlyUnseenMessages=true&consumer.delay=60000").to("seda://mails");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment