I have a java web start application and i need to disable bytecode verification from within the jnlp file.
This can be done easily by setting JAVAWS_VM_ARGS="-noverify" or by setting -Xverify:none but the documentation here says that web start does not support adding these arguments in jnlp file.
I tried this :
<j2se version="1.6+" java-vm-args="-noverify -showversion -verbose" >
under resources tag but it skips -noverify and takes the other two.
Any help is appreciated.