We're still getting to know Camel but one of the things we'd like to try is to have a step in our pipeline where HTML data (or a file location) is passed to firefox and converted to PDF. We'd like to probably pass a location on disk or perhaps just the entire HTML as data.
How should we go about implementing this? Should the firefox PDF generator be a Component or Processor? I'm imagining something like this: from("file://myhtmlfiles").to("firefoxpdf:///usr/bin/firefox").to("file://mypdffiles") Thanks for any ideas, David