Basically I'm trying to retrieve some text from any feed, and run some
processing on it (e.g. add to database, send to another queue etc.).
user09772 wrote:
>
> Hey guys,
>
> I'm trying to following to setup a camel route for google news:
>
>
> from("http://news.google.com/news?output=rss").marshal().rss().to("direct:simple-rss-send");
> from("direct:simple-rss-send").process(new Processor() {
> public void process(Exchange e) {
> LOG.info("Received exchange: " + e.getIn());
> }
> });
>
> I never receive any messages, any idea what I'm doing wrong here?
>
> thanks.
>
--
View this message in context:
http://old.nabble.com/Rss-Feed-route-config-tp27131975p27136368.html
Sent from the Camel - Users mailing list archive at Nabble.com.