JAAS config file in jar root through webstart
I'm tring to put my jaas.config file in my application's jar that is downloaded through webstart because I don't want to have the file on the server anymore.
I keep getting a security exception saying it cannot locate the file. What is the correct syntax to specify that the jaas config file is at the root of the classpath?
I would have expected the following to work, but apparently not
<property name="java.security.auth.login.config" value="/jaas.config"/>
Note, I also tried:
<property name="java.security.auth.login.config" value="jaas.config"/>

