[
https://issues.apache.org/jira/browse/CXF-3697?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13073415#comment-13073415
]
Xilai Dai commented on CXF-3697:
--------------------------------
tried to add these code to ClientImpl.java:
@Override
protected void finalize() throws Throwable {
destroy();
super.finalize();
}
but still not work!
> the clientDestroyed() of ClientLifeCycleListener impl not be called when the
> service undeployed
> -----------------------------------------------------------------------------------------------
>
> Key: CXF-3697
> URL: https://issues.apache.org/jira/browse/CXF-3697
> Project: CXF
> Issue Type: Bug
> Components: Bus
> Affects Versions: 2.4.1, 2.5
> Reporter: Xilai Dai
> Labels: ClientLifeCycleListener
>
> the clientDestroyed() of ClientLifeCycleListener impl not be called when the
> service undeployed.
> sample code:
> import org.apache.cxf.endpoint.ClientLifeCycleListener;
> public class ClientListenerImpl implements ClientLifeCycleListener{
> public void clientCreated(Client client) {
> System.out.println("clientCreated!");
> }
> public void clientDestroyed(Client client) {
> System.out.println("clientDestroyed!");
> }
> }
> ClientLifeCycleManager clcm = bus.getExtension(ClientLifeCycleManager.class);
> if (null != clcm){
> ClientListenerImpl cltListener = new ClientListenerImpl();
> clcm.registerListener(cltListener);
> }
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira