Re: Camel RSS component can't be used as Producer Endpoint

2013-08-14 Thread skazy
Hi Williem, it is not about periodicaly camel pull. It's about that how to pull more than one URL by camel-rss component. I have the list od feed urls to pull in single route. Ziga -- View this message in context: http://camel.465427.n5.nabble.com/Camel-RSS-component-can-t-be-used-as-Producer

Re: Camel RSS component can't be used as Producer Endpoint

2013-08-13 Thread skazy
Hi Bilgin, I have to write the route which periodicaly reads the list of RSS feed urls from database (timer component) and then parse each url with rss component and finally store feed items into solr index. So I have many feed urls to fetch and parse in one camel route. Do you know for any route

Camel RSS component can't be used as Producer Endpoint

2013-08-13 Thread skazy
Hi, I am trying to use camel-rss component as follow: from("timer://timerCamel?repeatCount=0&delay=1000&period=30") // ... route steps for fetching the list of urls from database *.to("rss:http://rss.cnn.com/rss/edition.rss?splitEntries=false&consumer.delay=1000";)* // ... some ad