Hello group,

I am evaluating CXF DOSGI for a project and the start-up time is worrying
me. Also, the more unrelated services I register the worse it gets.

Currently, I am registering only one cxf dosgi related service:
    Dictionary<String, String> properties = new Hashtable<String, String>();
    properties.put("service.exported.interfaces",
MyService.class.getName());
    properties.put("service.exported.configs", "org.apache.cxf.ws");
    properties.put("org.apache.cxf.ws.frontend", "jaxws");
    properties.put("org.apache.cxf.ws.databinding", "jaxb");
    properties.put("org.apache.cxf.ws.address",
"http://localhost:5555/myservice";);
    context.registerService(MyService.class.getName(),
MyServiceImpl.instance(), properties);

Is there any way to improve the "discovery??" performed by cxf dosgi?

Thanks,
Jorge



--
View this message in context: 
http://cxf.547215.n5.nabble.com/DOSGI-startup-time-tp5512230p5512230.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to