I'm trying to run my application with Java Web Start, but only locally through my web browser without any servers. I created RunnableJar file of my application and then wrote jnlp file like this:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
<information>
<title>Title</title>
<vendor>Me</vendor>
<offline-allowed/>
</information>
<resources>
<jar href="myApp.jar" main="true" />
<j2se version="1.6+" href="http://java.sun.com./products/autodl/j2se"/>
</resources>
<application-desc>
name="myApp"
main-class="application.Main"
</application-desc>
</jnlp>
But when I try to run it, I get "Application blocked by Java Security". I can't add any site to exceptions, because I'm not using any site. When I open Java Control Panel, my application is there in Temporary Internet Files in Cache Viewer, but when I try to open it, the same error occurs.