Вопрос

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