-3
This is standard Javavm, it’s possible to disable security, but I wouldn’t recommend it. You’re probably also using requests of all permissions without needing to, or really your Javavm is at a strict level and neither sandbox function fully (DOES NOT SOLVE):
<security>
<sandbox />
</security>
but it’s a security issue, what I think would solve maybe would be to sign your program, the steps are:
- https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/signed_jnlp.html#A1148052
- https://docs.oracle.com/javase/tutorial/deployment/jar/signindex.html
- https://docs.oracle.com/javase/tutorial/deployment/jar/signing.html
That is, you should not sign jnlp, you should put jnlp inside a jar to sign the jar. something like:
jarsigner <seu jar>.jar alias
The details are in the links above