문제

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