Client operations and server operations can establish communication through
CSClientService. At first, the client operation needs to obtain one CSClientService
instance, and then it calls its sendAndWait() method, finally, it calls the
client operation's fireHandleOperaionRepledEvent() method, for example:
CSClientService csClientService = CSClient.getCSClient("realCSClient");
csClientService.sendAndWait(this, 60000);
fireHandleOperationRepliedEvent(new OperationRepliedEvent(this));
See the Java™ Client/Server
Messaging APIs documentation for more information.