Java Applet via JNLP: System.Properties not being “set”
It is years since I have worked in Java (that's my excuse). I am trying to launch a Java Swing UI as an Applet (previously done via Web Start). I have modified the jnlp file to reflect the changes that I know are necessary for an applet (e.g. using applet-desc instead of application-desc). Inside the <resources> tag in the jnlp file we set system properties like this: <property name="java.security.auth.login.config" value="$$context/app/auth.conf"/> In the init method of the main class we try to read some of these system properties and always get "null" as the value. Does anyone have any ideas