Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
VirtualBox ComponentAvailable as of Camel 2.11.0 This component uses the web-service API of VirtualBox to execute Options
VirtualBox consumerVirtualBox consumer is dedicated to poll events generated by the virtual machines. In order to connect to the given machine instance use the following route: from("virtualbox:targetMachineName?url=http://myhost:18034&user=test&passwd=test"). to("mock:virtualBoxEvents); VirtualBox consumer is a polling consumer, as it relays on the concept of the passive listener to collect the virtual machine events. VirtualBox producerVirtualBox producer sends commands to the VirtualBox manager. It may be used to interact with and control the behavior of the virtual machines. The following commands are supported by the current version of the component:
To create producer endpoint follow the syntax demonstrated below: from("direct:vboxCommands"). to("virtualbox:targetMachineName?url=http://myhost:18034&user=test&passwd=test"); Maven usageMaven users will need to add the following dependency to their <dependency> <groupId>org.apache-extras.camel-extra</groupId> <artifactId>camel-virtualbox</artifactId> <version>${camel-version}</version> <!-- use the same version as your Camel core version --> </dependency> |