I'm investigating usage of applets in my web application, I'm trying jnlp to load the jar file:
EDITED:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" href="cache.jnlp" codebase="http://127.0.0.1:8888/">
<information>
<title>WebSight cache</title>
<vendor>TechSys</vendor>
</information>
<resources>
<!-- Application Resources -->
<j2se version="1.6+"
href="http://java.sun.com/products/autodl/j2se" />
<jar href="WebSightCache.jar" main="true" />
</resources>
<applet-desc
name="WebSight cache"
main-class="cz.techsys.web.cache.CacheApplet"
width="100"
height="100">
</applet-desc>
</jnlp>
I'm getting error: com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://127.0.0.1:8888/WebSightCache.jar (I've turned this notifications in Java Console)
But when I eenter this url I download the file?
- I get this error when I use jnlp file directly (double click)