284.4. 使用
要调用在 RMI registry 中注册的现有 RMI 服务,请创建一个类似如下的路由:
from("pojo:foo").to("rmi://localhost:1099/foo");
要在 RMI registry 中绑定现有的 camel 处理器或服务,请定义一个 RMI 端点,如下所示:
RmiEndpoint endpoint= (RmiEndpoint) endpoint("rmi://localhost:1099/bar"); endpoint.setRemoteInterfaces(ISay.class); from(endpoint).to("pojo:bar");
请注意,当绑定 RMI 消费者端点时,您必须指定公开的 远程
接口。
在 XML DSL 中,您可以按以下方式从 Camel 2.7 开始:
<camel:route> <from uri="rmi://localhost:37541/helloServiceBean?remoteInterfaces=org.apache.camel.example.osgi.HelloService"/> <to uri="bean:helloServiceBean"/> </camel:route>