Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a desktop application . I want to launch that application using Web start. It is working fine. when I am launch it first time using browser then ,it will download all jars defined in resources . but when next time i am run it again using jnlp or from browser ,it will not downloading jars. it will used from cache memory of my system or some where else,i don't know..

I want that every time when my application is launch it will download all jars defined in resources

my jnlp file contains :

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="" href="">
    <information>
        <title>example</title>
        <vendor>example</vendor>
    </information>
    <resources>
        <!-- Application Resources -->
        <j2se version="1.5+"
              href="http://java.sun.com/products/autodl/j2se"/>
        <jar href="application.jar" main="true" />
        <jar href="lib/app.jar" />             
    </resources>
    <application-desc main-class="com.application.entry">
  </application-desc>
   <update check="background"/>
   <security>
     <all-permissions/>
   </security>
</jnlp>
share|improve this question
Check out the answers to this similar question: stackoverflow.com/questions/2148454/… – holygeek Dec 5 '11 at 7:55
That JNLP file is invalid. For best results, validate it using JaNeLA. – Andrew Thompson Dec 5 '11 at 9:30

3 Answers

up vote 5 down vote accepted

It will download jars if there are new versions of them. If not, there is really no need to download files.

share|improve this answer
How would it know that,new versions are available.. can you explain please... I have upload my jar at server.after make some changes reupload it. but still it will not download jars.i.e it is using old jars. – user1068768 Dec 5 '11 at 9:05
JWS will check the 'last updated' time on the server against the locally cached versions, if it is later, the new Jars will be downloaded. Note that due to time-zone differences between server and client, this might result in a delay of up to 24 hours between when a new Jar is uploaded, and when it is recognized as new content to be updated. – Andrew Thompson Dec 5 '11 at 9:29
thanks for the help. – user1068768 Dec 5 '11 at 10:11

Although the behavior pointed by Andrew Thompson is something you can expect, you can change the update policy like this:

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="" href="">
    <information>
        <title>example</title>
        <vendor>example</vendor>
    </information>
    <resources>
        <!-- Application Resources -->
        <j2se version="1.5+"
              href="http://java.sun.com/products/autodl/j2se"/>
        <jar href="application.jar" main="true" />
        <jar href="lib/app.jar" />             
    </resources>
    <application-desc main-class="com.application.entry">
  </application-desc>
   <update check="always" policy="always"/>
   <security>
     <all-permissions/>
   </security>
</jnlp>
share|improve this answer

Yes, it is the point for solving the problem.

The solution is easy, you have make these changes :

update check="always" policy="always

And it must not be into anything set

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.