Karaf 4.2.9 I am migrating Tomcat based web applications to Karaf. As I have several instances of each application installed on one Tomcat Server, the application's web context defines the identity and URL of each instance.
*** * conf/Catalina/localhost/productionLine1.xml *** <Context docBase="${catalina.base}/wars/productionLine-1.0.war" path="/productionLine1"> <Parameter name="productionLine" value="1" override="false"/> </Context> *** * conf/Catalina/localhost/productionLine2.xml *** <Context docBase="${catalina.base}/wars/productionLine-1.0.war" path="/productionLine2"> <Parameter name="productionLine" value="2" override="false"/> </Context> In Karaf I expect each application to be broken into many bundles, including bundles utilizing JSF for web UI and CXF for RESTful functionality. How do implement, install, and configure several instances of a bundle with different configuration including the URL for web bundles? Where can I find examples? Paul Spencer