Found unsigned entry in resource
jar, java, java-web-start, jnlp
Solution
This worked for me:
Go the Control Panel/Java.
Then click on “Settings” button and activate the option “Keep temporary files on my computer.”
It’s weird, but it worked!
Problem
i have the following JNLP file: ``` <jnlp spec="1.0+" codebase="http://****:****" href="tcm2012.jnlp"> <information> <title>TCM 2012</title> <vendor>Drift og Performance, *** Servicecenter</vendor> <homepage href="http://******"/> <description/> </information> <security> <all-permissions/> </security> <resources> <j2se version="1.6+"/> <jar href="tcm2012.jar"/> </resources> <application-desc main-class="com.****.kundeservice.TCMApplication"/> </jnlp> ``` Now when i try to run in from the web i get the following error: ``` Found unsigned entry in resource ``` With the following exepction ``` com.sun.deploy.net.JARSigningException: Found unsigned entry in resource: http://*****:****/tcm2012.jar at com.sun.javaws.security.SigningInfo.getCommonCodeSignersForJar(Unknown Source) at com.sun.javaws.security.SigningInfo.check(Unknown Source) at com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedResourcesHelper(Unknown Source) at com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedResources(Unknown Source) at com.sun.javaws.Launcher.prepareResources(Unknown Source) at com.sun.javaws.Launcher.prepareAllResources(Unknown Source) at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) at com.sun.javaws.Launcher.launch(Unknown Source) at com.sun.javaws.Main.launchApp(Unknown Source) at com.sun.javaws.Main.continueInSecureThread(Unknown Source) at com.sun.javaws.Main.access$000(Unknown Source) at com.sun.javaws.Main$1.run(Unknown Source) at java.lang.Thread.run(Unknown Source) ``` Does anyone know how to fix this problem?