You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Atom Component

The atom: component is used for polling atom feeds in Camel.
Note: The component currently only supports polling (consuming) feeds.

URI format

atom://atomUri

Where atomUri is the URI to the atom feed to poll. Camel will default poll the feed every 60th seconds.

Options

splitEntries
filter
lastUpdate

Exchange format

TODO: Header keys
TODO: What data you get returned

Samples

In this sample we poll James Strahams blog.

from("atom://http://macstrac.blogspot.com/feeds/posts/default").to("seda:feeds");
  • No labels