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-tp27131975p27131975.html
Sent from the Camel - Users mailing list archive at Nabble.com.