On 06/21/2012 09:58 AM, gouessej [via jogamp] wrote:
> Ok I'm going to investigate a bit.
Debug output of Applet's and JNLP related:
Thanks to your heads up, I figured out
that I have broken GlueGen's [and hence all]
property parsing in PropertyAccess using the 'jnlp.' prefix.
Abstract:
Usually you set a property like
jogamp.debug.IOUtil
jogamp.debug=all
to enable either IOUtil debugging or all debugging.
In case you use Applets or JNLP you cannot use above
property namespace, since it's considered insecure.
GlueGen would allow you to use an 'jnlp.' alias, e.g.:
jnlp.jogamp.debug.IOUtil
jnlp.jogamp.debug=all
The latter are secure properties and will be passed to the invoked JVM.
However, I broke that logic in GlueGen w/ commit
f4ac27e177f6deb444280d3b375e7d343e38bd08.
Fixing it right now ..
https://jogamp.org/bugzilla/show_bug.cgi?id=591~Sven