Jars Updated but not JNLP

Has anyone else seen this problem? I just happened to notice it but it may have been happening for a while, I just never really checked before.
I updated a JWS app which involved updated jar files as well as a minor change to the resources attribute of the JNLP file. The next time I launched the app (using the desktop shortcut) JWS downloaded the latest jar files but, if I look at the JNLP file in control panel, it is the old version. If I go back to the web page and launch the app from the hyperlink then everything updates correctly.
Since I changed the JNLP file the timestamp should have changed. Is there something else JWS uses to determine if/when to update the file?
I am using version 1.6.10 on XP

I see the same: jnlp is not updated.
Further, jars mentioned in a resource jnlp are not updated (probably due to jnlp not being updated).
This worked with 1.6.0_13.
This is the application jnlp accessed from the local filesystem:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp
  spec="6.0+"
  codebase="file:///D:/localsetup/"
  href="productionline_CURRENT_webstart.jnlp">
  <information>
    <title>title</title>
    <vendor>3Dfacto A/S</vendor>
    <description>description</description>
  </information>
  <security>
    <all-permissions/>
  </security>
  <update check="always" policy="prompt-update"/>
  <resources>
    <java version="1.6+"/>
    <extension href="http://webstart:8080/virtubuild/configurator/current/ped/configurator.jnlp"/>
  </resources>
  <application-desc main-class="defacto.clientgui.Configurator">
    <argument>runbase=file:///D:/3dwork/ProductionLine_DEV/Classes/</argument>
  </application-desc>
</jnlp>This is the component-desc jnlp mentioned in the application jnlp:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp
  spec="6.0+"
  codebase="$$codebase"
  href="$$name">
  <information>
    <title>Configurator</title>
    <vendor>3Dfacto A/S</vendor>
    <description>Latest Configurator</description>
  </information>
  <security>
    <all-permissions/>
  </security>
  <update check="always" policy="prompt-update"/>
  <resources>
    <java version="1.6+"/>
    <jar href="configurator.jar" main="true"/>
    <jar href="array6connector.jar"/>
    <jar href="ArrayRuntime6.jar"/>
    <jar href="calcscript.jar"/>
    <jar href="core.jar"/>
    <jar href="cortonajcwconnector.jar"/>
    <jar href="izmcomjni.jar"/>
    <jar href="jacozoomcortonajcw.jar"/>
    <jar href="log4j-1.2.15.jar"/>
    <jar href="tablefilter-v1.5.0.jar"/>
    <jar href="vbisclient.jar"/>
    <jar href="vbiscommon.jar"/>
  </resources>
  <resources os="Windows">
    <nativelib href="nativelib.jar"/>
  </resources>
  <component-desc/>
</jnlp>The application-jnlp is executed from local filesystem.
First execution with an empty cache produces these log entries on the server:
192.168.0.84 - - [18/Sep/2009:12:41:24 +0200] "GET /virtubuild/configurator/current/ped/configurator.jnlp HTTP/1.1" 200 1058
192.168.0.84 - - [18/Sep/2009:12:41:24 +0200] "GET /virtubuild/configurator/current/ped/configurator.jar HTTP/1.1" 200 712692
192.168.0.84 - - [18/Sep/2009:12:41:24 +0200] "GET /virtubuild/configurator/current/ped/array6connector.jar HTTP/1.1" 200 20179
192.168.0.84 - - [18/Sep/2009:12:41:24 +0200] "GET /virtubuild/configurator/current/ped/ArrayRuntime6.jar HTTP/1.1" 200 62792
192.168.0.84 - - [18/Sep/2009:12:41:24 +0200] "GET /virtubuild/configurator/current/ped/calcscript.jar HTTP/1.1" 200 88210
192.168.0.84 - - [18/Sep/2009:12:41:24 +0200] "GET /virtubuild/configurator/current/ped/core.jar HTTP/1.1" 200 1219705
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/cortonajcwconnector.jar HTTP/1.1" 200 21035
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/izmcomjni.jar HTTP/1.1" 200 586601
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/jacozoomcortonajcw.jar HTTP/1.1" 200 74308
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/log4j-1.2.15.jar HTTP/1.1" 200 415417
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/tablefilter-v1.5.0.jar HTTP/1.1" 200 116287
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/vbisclient.jar HTTP/1.1" 200 69409
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/vbiscommon.jar HTTP/1.1" 200 21404
192.168.0.84 - - [18/Sep/2009:12:41:26 +0200] "GET /virtubuild/configurator/current/ped/nativelib.jar HTTP/1.1" 200 244187Next execution without any changes on the server produces the following.
Note the strange order and that nativelib.jar is requested twice:
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/ArrayRuntime6.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/tablefilter-v1.5.0.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/cortonajcwconnector.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/array6connector.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/log4j-1.2.15.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/vbisclient.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/calcscript.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/jacozoomcortonajcw.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/nativelib.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/configurator.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/configurator.jnlp HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/izmcomjni.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/core.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:10 +0200] "GET /virtubuild/configurator/current/ped/vbiscommon.jar HTTP/1.1" 304 -
192.168.0.84 - - [18/Sep/2009:12:42:12 +0200] "GET /virtubuild/configurator/current/ped/nativelib.jar HTTP/1.1" 304 -To be continued in the next message due to character limit!
/Henrik

Similar Messages

  • IPhoto will not initiate. Downloaded update, but not change.  Any help out there?

    iPhoto will not initiate. Downloaded update, but not change.  Any help out there?

    If you want help you’ll need to give us more information. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • HT4623 i just updated my 3gs 4.3 t0 6.1 its updated but not activate plz help

    i just updated my 3gs 4.3 t0 6.1 its updated but not activate plz help

    Do you get an error message.
    Was your phone ever locked to a different phone carrier?
    When you can't activate, usually means your phone was hacked or jailbroken to unlocked it, then when you updated the IOS it locked back to the original carrier.

  • Got the OS 7.10.8107.79 update but not the firmwar...

    Hi..
    I have a small question..
    I got the OS 7.10.8107.79 update but not the firmware update... my Firmware is stil 1600.2479.7740.11451 How can I get the new firmware????
    Thanks in advance

    @billstrom
    They don't have to be scheduled to appear together!
    Happy to have helped forum with a Support Ratio = 42.5

  • I have an IPhone operating OS 4.21. I cannot back it up before update and I cannot set up an ICloud account as it needs to be on a version later on the device. Please help, I want to update but not lose everything!

    I have an IPhone operating OS 4.21. I cannot back it up before update and I cannot set up an ICloud account as it needs to be on a version later on the device. Please help, I want to update but not lose everything!

    SorchaH wrote:
    I receive an error "Itunes cannot back up the IPhone because the back up cannot be saved on the computer".. So I tried to download and log into ICLoud but need to do this from my device..
    That would tend to indicate a permissions issues on the computer.
    Running an outdated version of iTunes is of absolutely no benefit.
    All iDevices work with the current version of iTunes.

  • 10.6.8 in software updates but not installing

    I am having issues with installing software updates for my iMac.  I had to manually download and install the 10.6.7 update (I chose the combo) from the apple site. It shows that the update is downloaded in my software updates but it will not install before or after restart.  I was successul at installing the 10.6.7 combo, but now I am having the same issue with 10.6.8.  I did download the update combo from the apple website, but when I try to install, I get an error stating "The installation failed. The installer could not install the software because there was no software found to install."  I am a newer (1-2 years) mac user so I'm having issues finding solutions.
    Thanks in advance.

    appologize in advance if I have posted this in the wrong place ... I am a newbie

  • IPhoto update but not to 9.5.1

    I have an old version of iPhoto (7.1.5) which is no longer supported for making books, etc.  I would like to upgrade to a more current version but am still on 10.8.5.  Is there a way to upgrade  my iPhoto but not to the most current version?

    Purchase an iLife '11 DVD - Amazon or eBay are potential sources and install iLike '11 form it and update to the lateest version for your OS - 9.4.3
    LN

  • When apps in AAM  list are listed as updated, but not installed.

    When viewing the apps list in AAM the programs PS, AI & ID are listed as updated, but I do not have thr CS6 versions installed. Can you inform me on how to get the current versions installed?

    Run the Creative Suite Cleaner Tool and let AAM install the programs.
    Mylenium

  • Clients receiving updates but not reporting

    Hi All,
    I'm having an issue where all Windows 8.1 clients are downloading updates just not reporting back into my console. This seems to be happening since I upgraded to Windows Server 2012R2 (from 2008R2) and created a new WSUS implementation.
    The Windows Update Fix-It does fix the issue but this is happening on 50+ pcs and I really need to be able to silently deploy a fix to them.  I'd also like to know what caused it so it doesn't happen again. I do have 1 or 2 Windows 7 machines this
    happens on, but 99% is on Windows 8.1. I've tried manually fixing based on the Fix-It findings but nothing I have done so far has worked.
    Does anyone have any ideas where I should start?
    Here are the Fix-It Issues Found:
    1. Service Registration is missing or corrupt.
           Reset service registration
    2. Windows Update erroe 0x8007000D (2015-04-20-T-09_02_15A)
           Resetting Windows Update data store
    3. Problem installing recent updates
           Repair Windows Update
    I believe #3 is caused because I use WPP to publish Adobe Flash Player. I do not have my 400+ PCs segregated by OS, rather by departments. So Win 8 machines get Adobe Flash Player WPP updates and constantly fail. I have thought this might be an issue.

    Thank you, this does seem to be one of the issues with my sysprep'd machines. I am a quite confused as to why the SUSid is not being reset upon sysprep. When I build these images they are not on the WSUS either.
    I am also not in a domain environment. I am running a script which manually sets the following,
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    "WUServer"="http://x.x.x.x:8530"
    "WUStatusServer"="http://x.x.x.x:8530"
    "AcceptTrustedPublisherCerts"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
    "AUOptions"=dword:00000004
    "DetectionFrequency"=dword:00000004
    "DetectionFrequencyEnabled"=dword:00000001
    "NoAutoRebootWithLoggedOnUsers"=dword:00000001
    "NoAutoUpdate"=dword:00000000
    "RebootRelaunchTimeout"=dword:000000f0
    "RebootRelaunchTimeoutEnabled"=dword:00000001
    "RescheduleWaitTime"=dword:00000014
    "RescheduleWaitTimeEnabled"=dword:00000001
    "ScheduledInstallDay"=dword:00000000
    "ScheduledInstallTime"=dword:0000000b
    "UseWuserver"=dword:00000001
    "AutoInstallMinorUpdates"=dword:00000001
    Tech support also said that I should be enabling ,
    Computer Config > Admin Templates > Windows Components > Windows Updates
    1. Configure Automatic Updates (enabled and set to 3)
    2. Specify intranet Microsoft Update Service Location (set to enabled and my WSUS IP)
    3. Automatic Update detection frequency (enabled)
    Resetting the susid seems to work for some clients and then the GP edit seems to work for others.
    I do have to remove the client from the WSUS console before resetting the susid or it will not work.
    Now I am concerned I have something wrong with my sysprep'd images. However, even some out of the box from a store machines are not reporting. It's perplexing.

  • [SOLVED] Unrelated Issue - AUR PKGBUILD updated, but not 'pkg'.tar.gz

    Hi all,
    I noticed that qbzr had become unmaintained and in fact wouldn't install via the AUR PKGBUILD file as the source download link had become obsolete.
    I took ownership of the package, then downloaded, updated, targz'd and submitted the new archive. However, it still doesn't seem to be quite right.
    If I download the PKGBUILD , I can now makepkg and then pacman -U without trouble. (v0.18)
    However, using yaourt - yaourt gets the version info etc from the PKGBUILD file I think, as it displays the intended version correctly (0.18). However it then downloads qbzr.tzr.gz, within which is the PKGBUILD file of version (0.16).
    I feel I must have missed something, but I can't figure out how when I submitted qbzr.tar.gz AUR was able to correctly extract the PKGBUILD file for display but not provide the correct qbzr.tar.gz
    Perhaps there is a lag in file propagation that I have been previously unaware of?
    Cheers
    Last edited by thread (2010-02-08 03:28:35)

    thread wrote:However it then downloads qbzr.tzr.gz, within which is the PKGBUILD file of version (0.16).
    there's nothing wrong with the tarball, so i'm not sure why you think it's not an issue/bug/problem/etc with yaourt..
    $ wget http://aur.archlinux.org/packages/qbzr/qbzr.tar.gz
    $ bsdtar xf qbzr.tar.gz
    $ grep ^pkgver= qbzr/PKGBUILD
    pkgver=0.18
    Last edited by tdy (2010-02-05 05:04:08)

  • I have an ipad with 8.1.1 software. I lost my thumbnails on my movies after one of the system updates but not sure which one since I don 't look at the movies that often.

    I have an ipad running 8.1.1. I lost all of my movie thumbnails after one of the system updates, but I'm not sure which one since I don't look at the movies that ofter.How do I restore my thumbnails. They are fine in itunes on my imac that I sync with.

    onix_76 wrote:
    how come? Documents also have on hand to buy as photo and check the box
    So what?  The second-hand shop you bought it from didn't follow the right procedures.  You also didn't follow the right procedures to make sure that iPhone was not in Activation Lock.  It's like buying a car for cash but not getting the title signed over to you.  It's not your car if you don' have the title.  And that's not legally your iPhone if the previous owner's Apple ID is still registered to the device for Find My iPhone/Activation Lock.
    Only a proof of purchase from the ORIGINAL retail store would do any good at all.  Return the device to where you bought it and demand your money back.  If they refuse, either get a lawyer and/or turn in the device to local police.  If you're in possession of stolen property, then the cops won't care about where you got it from.

  • My HP Support Assistant is downloading driver updates but not installing,

    Hello there,
     I use  HP 15-r046tu Notebook PC, the issue is my HP Support Assistant is downloading driver updates and every single time its failing to install. I even saw earlier posts on this issue and downloaded the latest support assistant and also followed the instructions but yet its not helping to solve the issue. btw i am using windows 8.1.
    I would really appreciate if one could help me solve this isuee. 
    Thank you .

    Farhnahasnat
    Welcome to the HP Community Forum.
    Commentary
    Depending on the underlying cause of the problem, the HPSA (HP Support Assistant) may never be able to install the updates on your particular system.  The problem could be a server problem, it could be the Internet path the data has to take to get to your part of the planet, it might be your Internet provider  that, at any particular moment in time, is not cooperating, it is possible that your computer is having RPC issues due to outdated drivers, File System errors --- whatever.
    IF you find and fix whatever mystery is causing the root cause of the prlblem, then Voila!  The install portion of the program may work.
    This wonderful program works for millions of people -- and yet it does not work for many deserving folks who have done nothing wrong and who do not know why it does not work for them.
    Make sure your Windows Updates are current.
    Create a Restore Point:   Create a Restore Point – Win7 OR  Create a restore point Win8
    Next:
    Close all your programs and shut down your computer
    Shut down and Switch off any other computers in the network
    Switch off any printers on the network
    Switch off the Router
    Disconnect everything on this computer (little Unifier for the keyboard / external mouse can stay)
    Perform the Hard Reset for your notebook model
    Switch on the router - wait at least thirty seconds for the router to boot.
    Boot the computer and log in
    Reminder:  Hard Reset is just a device Reset.  The procedure does not wipe out your files nor does it destroy your Windows setup in any way.  It just "clears the cobwebs".  Depending on the cause of the problem, this kind of "reset" can fix a variety of computer glitches.
    This exercise is unlikely to fix the problem; it might do so if the problem is minor and related to stuck instructions or minor temporary link or device issues.
    Suggested Workaround to the problem
    You can use the Patch list provided by HPSA and then open your computer's website to find, download, and install the drivers and software you want to update.
    NOTE:  Please see the Comments below before you Update your BIOS.   Please do not update the BIOS unless it is necessary and your computer is fully backed up beforehand.   
    Your computer's Support Website:
    HP 15-r046tu Notebook PC Drivers
    Reference:
    Install Software and Drivers from HP Website
    =======================================================
    Commentary -- BIOS Updates
    It is this Expert's opinion that you should not depend on HP Support Assistant when it comes to BIOS updates.
    Depending on other factors in the system at the time the HPSA tries to hit your system with an update of this type; the results might be ... other than expected.
    You might set HPSA to "Notify" to prevent it from trying to update your BIOS.
    ONLY update the BIOS when you see an update in your computer's webpage AND that update can be used to provide a fix for an issue you have discovered in your system.  In other words:  If your computer is happy, do not update the BIOS just because you think it would be a nice thing to do to it.
    If you decide to update your BIOS,
    Make sure ALL your backups are current and complete - this means everything you need to restore the system in the event that something goes wrong.
    Understand that even when you do everything exactly right, you can end up with a bricked computer, that is, an expensive paper weight.
    Make sure you have at least your critical data on some form of external backup.
    Disconnect USB drives and any other unnecessary hardware.  Keyboard and mouse can stay connected.
    Always run in AC power when updating the BIOS, never on the notebook battery
    Do not touch the system while the update is in progress
    Optional: Leave wireless button ON. You might switch off the router to assure there are no interruptions.
    Updating the BIOS
    =======================================================
    Click the Kudos Thumbs-Up to show you appreciate the help and time from our Experts.
    Although I strive to reflect HP's best practices, I do not work for HP. 
    Click Accept as Solution when the Answer is a good Fix or Workaround!
    Kind Regards,
    Dragon-Fur

  • Plsss help!! updated but not nano kept skipping songs when played!!!!!!!

    so i got my 2gb nano and its been working great all the time. until i saw my sis's new black 2gb nano (everythg the same , same model , same itunes , just the color is black) and i begged her to trade with me.
    so on my itunes it showed my sis's nano , i ignored it and just continued uplaoding songs. it worked quite well on the first day except when it was adapted to the computer , u can only listen to the music in library but not her nano.
    BUT then thgs happened! i wanted to edit the songs in it a bit so i connnected it again. every steps is just exactly normal. but when i listen to the nano , it won't play at all. there are exact songs in it but it kept skimming thru songs. (once it started the song , 1 sec later it skipped to the next song and goes on forever)
    i tried everythg! i re-updated it , i re-set the nano , i re-installed itunes but still it goes on skimming
    anyone pls helpppppppp me >?????? > <

    try reseting the ipod.
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • Numbers on my iOS devices have recently been updated but not on my iMac is this correct ?

    Numbers on both our iPads and our iPhone were recently updated but there has been no update for our iMac is this correct ?

    Yes, Apple updated the iWork Apps for iOS twice this month. The first Update added features just like the Mac Counterparts but the second Updatehas bugfixes and fixed perfomance issues.
    Since the last Updates iWork finally runs fine on my iPad 3 :-)

  • My ipad 2 won't update apps. It shows that 2 apps need updating, but not which ones.

    My iPad 2 won't update apps. It shows that 2 apps need updating, but doesn't show which 2.

    Many people are having this problem for the last couple of days. This is a problem that Apple has to fix. If you look around the forum, you will see many, many discusssions about this and they have been going on for a few days.
    According to Fly150 in another discussion, this is a workaround - for the time being.
    If you want to update the Apps while waiting for Apple to fix Updates:
    1. Go to App Store
    2. Select Purchased
    3. Select All
    4. Scroll down to find the Apps showing update
    5. Select update on the Apps
    This should update the Apps and get rid of the update count in App Store.

Maybe you are looking for