After modifying security tag with all permissions, I got below exception
JNLPException[category: Security Error : Exception: null : LaunchDesc:
<jnlp spec="1.0+" codebase="http://10.20.4.61:8080/VS_APP/" href="http://10.20.4.61:8080/VS_APP/vsapp.jnlp">
<information>
<title>Virgin Kiosk Application</title>
<vendor>TCS Limited.</vendor>
<homepage href="http://10.20.4.61:8080/VS_APP/docs/help.html"/>
<description>This is a Virgin Kiosk Application</description>
<description kind="short">Kiosk App</description>
<description kind="one-line">This is a Virgin Kiosk Application</description>
<description kind="tooltip">This is a Virgin Kiosk Application</description>
<icon href="http://10.20.4.61:8080/VS_APP/images/logo.gif" kind="default"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se initial-heap-size="-1" max-heap-size="-1" version="1.3+"/>
<jar href="http://10.20.4.61:8080/VS_APP/lib/cussvs.jar" download="eager" main="false"/>
</resources>
<application-desc main-class="com.arinc.asd.cussvs.VSCUSSApp">
<argument>
http://10.20.4.61:8080/VS_APP/resources/config.xml</argument>
</application-desc>
</jnlp> ]
at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source)
at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source)
at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Here is my JNLP file
<?xml version="1.0" encoding="utf-8"?>
<jnlp
spec="1.0+"
codebase="http://10.20.4.61:8080/VS_APP"
href="vsapp.jnlp">
<information>
<title>Virgin Kiosk Application</title>
<vendor>TCS Limited.</vendor>
<homepage href="docs/help.html"/>
<description>This is a Virgin Kiosk Application</description>
<description kind="short">Kiosk App</description>
<icon href="images/logo.gif"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.3+"/>
<jar href="lib/cussvs.jar"/>
</resources>
<application-desc main-class="com.arinc.asd.cussvs.VSCUSSApp">
<argument>
http://10.20.4.61:8080/VS_APP/resources/config.xml</argument>
</application-desc>
</jnlp>
It seems some security problem: checkSignedResourcesHelper
Any help would be appreciated!!!
Thanks,
Sam