Hello
I have a security problem with a JWS application and the web client gets the error message:
"Unsigned application requesting unrestricted access to system"
jarsigner.exe verifies OK. See following:
s = signature was verified
m = entry is listed in manifest
k = at least one certificate was found in keystore
i = at least one certificate was found in identity scope
jar verified.
Warning: This jar contains entries whose signer certificate will expire within six months.
My jnlp file looks like:
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for Notepad -->
<jnlp spec="1.0+" codebase="http://00.00.00.00/ICE/" href="ice.jnlp">
<information>
<title>ICE</title>
<vendor>CCC</vendor>
<description>Individual Color profile Enabler</description>
<homepage href="http://00.00.00.00/ICE/" />
<description kind="short">Blah blah blah</description>
<offline-allowed/>
</information>
<resources>
<jar href="JWS/Ice.jar" />
<j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
</resources>
<security>
<all-permissions/>
</security>
<application-desc main-class="Ice"/>
</jnlp>