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)
link|improve this question

Any suggestion on debugging appreciated – Hurda Feb 7 at 23:21
The JNLP is invalid, check it using JaNeLA. BTW - the codebase may be omitted for an embedded applet, but don't leave it empty. Is the applet embedded, or launched free-floating? – Andrew Thompson Feb 8 at 16:35
@AndrewThompson - doesn matter - I want to have it hidden or size 1x1. Still after validating it I can't laod it. – Hurda Feb 8 at 20:09
What is the fixed JNLP? – Andrew Thompson Feb 9 at 4:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.