I have FUSE ESB Enterprise installed on two virtual machines.
1. FUSE ESB OSGi container on Virtual Machine vm1:
FuseESB:karaf@vm1>osgi:list
This will display all the bundles installed in the container on vm1. Suppose there is a bundle A within this container.
2. FUSE ESB OSGi container on Virtual Machine vm2:
FuseESB:karaf@vm2>osgi:list
This will display all the bundles installed in the container on vm2. Suppose there is a bundle B within this container.
My goal is to combine or federate these two OSGi containers, so that the container on vm1 can access bundle B as well as all the other bundles from vm2. Also the container on vm2 can access bundle A as well as all the other bundles from vm1.
By combining, one container can access all the bundles from another container.
How can I achieve this goal? Anyone can provide me some information about doing this?