• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

security exception thrown will running application

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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>
 
Yeah, but how did the squirrel get in there? Was it because of the tiny ad?
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic