Note that there are some explanatory texts on larger screens.

plurals
  1. POWith Java 7 Update 45, the System Properties no Longer Set from JNLP Tag "Property"
    text
    copied!<p>We run the application from the attached JNLP. On the Java console, we have output the system properties with D. The properties from our JNLP files are not set any more. This is the first Java version that we get this sort of problems with. Everything was working fine up to and including 7 Update 40.</p> <p>We have all the jars signed but there are no security attributes in their manifests.</p> <pre class="lang-xml prettyprint-override"><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;jnlp spec="1.0+" codebase="http://10.0.10.230/webstart/app" href="desktop.jnlp"&gt; &lt;information&gt; &lt;title&gt;MyApp Desktop&lt;/title&gt; &lt;vendor&gt;MyApp GmbH&lt;/vendor&gt; &lt;homepage href="http://www.myres-edv.de"/&gt; &lt;description&gt;MyApp Desktop&lt;/description&gt; &lt;offline-allowed/&gt; &lt;/information&gt; &lt;security&gt; &lt;all-permissions/&gt; &lt;/security&gt; &lt;resources&gt; &lt;j2se version="1.5+" initial-heap-size="512M" max-heap-size="1024M" javaws-vm-args="-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8200"/&gt; &lt;property name="org.omg.CORBA.ORBInitialHost" value="10.0.10.230"/&gt; &lt;property name="org.omg.CORBA.ORBServerHost" value="10.0.10.230" /&gt; &lt;property name="sun.net.spi.nameservice.provider.1" value="dns,sun" /&gt; &lt;property name="MyApp.baktswritedos" value="true"/&gt; &lt;property name="MyApp.nocomm" value="true"/&gt; &lt;property name="MyApp.la.erfassungdos" value="true"/&gt; &lt;property name="com.sun.corba.ee.transport.ORBTCPConnectTimeouts" value="500:30000:40:30000" /&gt; &lt;property name="deployment.trace.level" value="all" /&gt; &lt;jar href="myresjar/ejb/myres/myres_ejb_client.jar" main="true" download="eager"/&gt; &lt;jar href="myresjar/ejb/myres/myres_ejb.jar" download="eager"/&gt; &lt;extension name="jars" href="commonejbjars.jnlp"/&gt; &lt;extension name="jars" href="jr.jnlp"/&gt; &lt;extension name="jars" href="commonjars.jnlp"/&gt; &lt;extension name="jars" href="commonjh.jnlp"/&gt; &lt;nativelib href="myresjar/ejb/myres/myres_dll.jar"/&gt; &lt;/resources&gt; &lt;resources os="Windows"&gt; &lt;nativelib href="myresjar/myres/native-dlls.jar" download="eager"/&gt; &lt;/resources&gt; &lt;application-desc main-class="de.myapp.gui.desktop.mainframe.DesktopMainFrame"&gt; &lt;argument&gt;-serverIP=10.0.0.230&lt;/argument&gt; &lt;argument&gt;-initNewDayAction=true&lt;/argument&gt; &lt;/application-desc&gt; &lt;/jnlp&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload