Process in memory after System.exit(0)

I still see the process in memory after I exit the app. Do you think it is a JWS side effect?Platform: W2KCheers,Ivan
[152 byte] By [izhidov] at [2007-9-26 1:39:45]
# 1

Ivan,

when you enable the 'java console' in Java Web Start->Preferences->Advanced->Show Java Console, you'll notice that you run into a java.security.accessControlException.

To avoid that, sign your jar file(s) and add the following to your jnlp file :

...

<security>

<all-permissions>

</security>

...

and it will work as expected!

Regards,

Patrick

blaserp at 2007-6-29 2:29:19 > top of Java-index,Desktop,Deploying...