无法在 Http 生产者(tomcat 服务器)接收文件
- 我现在从骆驼开始。我正在尝试创建路由来处理文件组件中的文件并将其传递到 http tomcat 服务器。
- 我创建的路由如下
from("file:inbox?noop=false").to("http://localhost:8080/myServer/");
我也尝试过使用我的 IP地址代替 localhost
- 我没有收到任何编译错误,运行时也没有收到任何编译错误,并且文件正在从收件箱文件夹中进行处理,但我无法在 myServer 目录中接收该文件。
- 我使用的Camel版本是2.0.0。
- I am starting now with Camel. I am trying to create route as to process file from a file component and pass on to a http tomcat server.
- I have created the route as follows
from("file:inbox?noop=false").to("http://localhost:8080/myServer/");
I have also tried using my I.P address in place of localhost
- I am not getting any compilation error nor at runtime and the file is getting processed from inbox folder, but I am not able to receive the file in myServer directory.
- Camel version I am using is 2.0.0 .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这应该可以...你应该使用最新版本的 Camel (2.8.2 目前)...这是一个简单的单元测试,用于显示 FILE->HTTP 的实际操作...
yep, this should work...you should use the latest version of Camel though (2.8.2 currently)...here is a simple unit test to show the FILE->HTTP in action...