On Wed, Aug 3, 2011 at 6:35 AM, J.S. Mammen <[email protected]> wrote: > Can I consume files from network share like > \\server\share<file://server/share>? > I tried File component but it did not work... >
The Camel file component uses the java.io.File for the paths. So whatever works with that you can do. On windows, you could maybe map to that network share, to a letter, eg e:\ = \\server\share<file://server/share> eg so you just type e: in the DOS prompt to go to that network share. If you can get that working, then Camel should be able to read from the e:\ path. -- Claus Ibsen ----------------- FuseSource Email: [email protected] Web: http://fusesource.com Twitter: davsclaus, fusenews Blog: http://davsclaus.blogspot.com/ Author of Camel in Action: http://www.manning.com/ibsen/
