Give full permission to particular Java Swing application -


i working on 1 java swing web start application , need test online. think need fix permission issues before deploying on server.

can make exception application, because right development in progress testing deploying again , again?

so avoid every time signing jar. can make exception in browser/system? can run full permissions without error.

<?xml version="1.0" encoding="utf-8" standalone="no"?> <jnlp codebase="http://searchengine.crazy-minds.com" href="launch.jnlp" spec="1.0+">     <information>         <title>logsearchengine</title>         <vendor>shilpi jain</vendor>         <homepage href=""/>         <description>logsearchengine</description>         <description kind="short">logsearchengine</description>     <offline-allowed/> </information>     <update check="background"/>     <resources>         <j2se version="1.7+"/>         <jar href="logsearchengine.jar" main="true"/>     <jar href="lib/commons-logging-1.1.3.jar"/> <jar href="lib/log4j-1.2.17.jar"/> </resources>     <application-desc main-class="com.novigolabs.uiscreens.homepage">     </application-desc> </jnlp> 

that should have security element added.

<security>     <all-permissions /> </security> 

after adding it, sure validate jnlp recommended in last question.


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -