Re: CXF cellar

2017-12-11 Thread abdulrazak
Yes, I have deployed Bundle in cluster group.
 
public class Activator extends BaseActivator implements BundleActivator{
private ServiceRegistration registration;
@Override
public void start(BundleContext context) throws Exception {
// TODO Auto-generated method stub
 ClusterManager clusterManager = 
getTrackedService(ClusterManager.class);
 if (clusterManager == null)
 return;
 String nodeId = clusterManager.getNode().getId();
// TODO Auto-generated method stub
Dictionary props = new Hashtable();
props.put("service.exported.interfaces", "*");
props.put("service.exported.configs", "org.apache.cxf.ws");
props.put("org.apache.cxf.ws.address",
"http://localhost:12507/shifttransfer;);
registration =
context.registerService("org.osgi.service.cm.ManagedService", this, props);

}
}
could you anyone guide me how to resolve, CXF bundle to deploy in cluster.



--
Sent from: http://karaf.922171.n3.nabble.com/Karaf-Dev-f930721.html


Re: CXF cellar

2017-12-11 Thread abdulrazak
Yes, I deployed bundle in cluster.
Implemented BundleConext, methods as below. Do i miss any thing to this.
public void start(BundleContext context) throws Exception {
// TODO Auto-generated method stub
 ClusterManager clusterManager = 
getTrackedService(ClusterManager.class);
 if (clusterManager == null)
 return;
// TODO Auto-generated method stub
Dictionary props = new Hashtable();
props.put("service.exported.interfaces", "*");
props.put("service.exported.configs", "org.apache.cxf.ws");
props.put("org.apache.cxf.ws.address",
"http://localhost:12507/shifttransfer;);
registration =
context.registerService("org.osgi.service.cm.ManagedService", this, props);

}




--
Sent from: http://karaf.922171.n3.nabble.com/Karaf-Dev-f930721.html


CXF cellar

2017-12-06 Thread abdulrazak
I am having bundle which is configured CXF using spring dsl.
Now, i need to install in cluster using cellar.
Could you please share an example link.




--
Sent from: http://karaf.922171.n3.nabble.com/Karaf-Dev-f930721.html