Frage

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

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top