Hi,
Please make sure you didn't install camel-spring-osgi and camel-spring
bundle at the same time.
We merged the camel-sping and camel-osgi bundle into camel-spring-osgi
in Camel 2.2, so you just need to install camel-spring-osgi bundle
instead of camel-spring and camel-osgi.
Willem
olamalam wrote:
Hi to all,
I'm trying to develop a hello world bundle for serviceMix kernel (1.1) which
uses camel-ftp component.
My aim is to run this route:
from("file://../data?noop=true").to("ftp://t...@127.0.0.1:21/?password=test");
Although this route runs without problem in a stand alone application, when
i deploy it in serviceMix kernel
I get FailedToCreateRouteException due to "No component found with scheme:
ftp".
To solve the problem what i did so far are:
1- deployed camel-ftp 2.2 bundle to serviceMix.
2- added camel-ftp package (org.apache.camel.component.file.remote) to
import-packages.
now when I run "headers bundle#" in serviceMix I can see this imported
package.
What else I can do?
Thanks in advance