You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is it possible to deactivte via a setting the JNLPSecurityManager
I found out that it is possible to do that with writing
javaws.exe -nosecurity my.jnlp
but here i added the -nosecurity parameter manual to the command.
Is there a way to do this via a property.
My Main Problem is, that when the JNLPSecurityManager is enabled i got a lot of AccessControlException: Access Denied exeptions. The most of them in the ForkJoinPool. For example when using a CompletableFuture.
-nosecuirty is a commandline argument in icedtea-web. For Access Denied Exception you could add required permissions to the java.policy file of the JVM that is used to run the application specified in the Jnlp file. Alternatively you can have a bat file that invokes javaws such as "javaws.exe -nosecurity %1" and you can make a file association for .jnlp to this bat file.
Dear OpenWebStart support team,
is it possible to deactivte via a setting the JNLPSecurityManager
I found out that it is possible to do that with writing
javaws.exe -nosecurity my.jnlp
but here i added the -nosecurity parameter manual to the command.
Is there a way to do this via a property.
My Main Problem is, that when the JNLPSecurityManager is enabled i got a lot of AccessControlException: Access Denied exeptions. The most of them in the ForkJoinPool. For example when using a CompletableFuture.
CompletableFuture.runAsync(() -> { //do something }
AccessControlException: Access Denied - java.lang.reflect.ReflectPermission
The text was updated successfully, but these errors were encountered: