264.3. 使用
RMI レジストリーに登録されている既存の RMI サービスを呼び出すには、以下のようなルートを作成します。
from("pojo:foo").to("rmi://localhost:1099/foo");
RMI レジストリーで既存の 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>