With the new Java 7 update 45, we are not able to set properties. We used to set it as follows
<resources>
...
<jar href="xxx.jar"/>
<property name="xxx.xxx.xxx.xxx.userName" value="Batman"/>
<property name="xxx.xxx.xxx.xxx.locale" value="en_US"/>
...
</resources>
We tried the work around, tried the following
<resources>
...
<jar href="xxx.jar"/>
<property name="jnlp.xxx.xxx.xxx.xxx.userName" value="Batman"/>
<property name="jnlp.xxx.xxx.xxx.xxx.locale" value="en_US"/>
...
</resources>
even tried "javaws." added as prefix.
Problem is we that we want to avoid making change in the codebase and want to fix the issue in the jnlp level.
Do we have any other work around or any ideas?