posted 18 years ago
when i tried to load application it gave me this message.
unsigned application requesting unrestricted access to system
unsigned resource:http://localhost:8080/notepad/notepad.jar
Now please give the steps to make my jar signed.
My jnlp file is
<?xml version="1.0"?>
<jnlp spec="1.5+" codebase="http://localhost:8080/notepad/" href="notepad.jnlp">
<information>
<title>Web start application</title>
<vendor>amar</vendor>
<description>Notepad Application</description>
<icon href="box.gif"/>
<icon kind="splash" href="boxwave.gif"/>
<offline-allowed/>
<shortcut online="false">
<desktop/>
<menu submenu="apps"/>
</shortcut>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5.+" />
<jar href="notepad.jar" />
</resources>
<application-desc main-class="Notepad" />
</jnlp>