Hi,
There are impls for ServerLifeCycleListener/ClientLifeCycleListener within one
bundle with spring configuration:
<bean id="serviceListenerImpl" class="my.ServiceListenerImpl" />
<bean id="clientListenerImpl" class="my.ClientListenerImpl" />
And there has a Service1 project which has a jaxws:endpoint with spring
configuration like this:
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<jaxws:endpoint id="service1"
implementor="#Service1Impl"
address="/service1">
</jaxws:endpoint>
All these bundles can be deployed into OSGi container. My question will be:
without modification to Service1 project, how to add the serviceListenerImpl to
the bus of Service1?
Thanks in advance!
Xilai