Working on flex application using java remote object calls. There is a cancel operation(a button on progress bar) which needs to kill/disconnect the operation/process on server. Here is how I am doing - ServiceLocator.getInstance().getRemoteObject(Services.REMOTE_OBJECT).disconnect();

But its not killing the session/ java process - not sure why. Any tip is helpful

有帮助吗?

解决方案

Disconnect will simply destroy the connection. You wont be able to kill Java process or destroy the java session. To destroy your session you will need to issue a logout on your channel.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top