RMI ComponentThe rmi: component bind the PojoExchanges Since this binding is just using RMI, normal RMI rules still apply in regards to what the methods can be used over it. This component only supports PojoExchanges URI formatrmi://rmi-regisitry-host:rmi-registry-port/registry-path
For example: rmi://localhost:1099/path/to/service
UsingTo call out to an existing RMI service registered in an RMI registry, create a Route similar to: from("pojo:foo").to("rmi://localhost:1099/foo"); To bind an existing camel processor or service in an RMI registry, create a Route like: RmiEndpoint endpoint= (RmiEndpoint) endpoint("rmi://localhost:1099/bar"); endpoint.setRemoteInterfaces(ISay.class); from(endpoint).to("pojo:bar"); Notice that when binding an inbound RMI endpoint, the Remote interfaces exposed must be specified. See Also |