Version file

Hello:
I try to launch my application and i have the next error:
"Missing version field in response from server when accessing resource :(http://arrahona.gedas.es:81/mb1/web/WEB-INF/app/MigracionB1.jar,1.0)"
The version.xml is like:
<jnlp-versions>
<resource>
<pattern>
<name>MigraconB1.jar</name>
<version-id>1.0</version-id>
</pattern>
<file>MigraconB1.jar</file>
</resource>
</jnlp-versions>
And the MigraconB1.jar is in the same directory that version.xml and the jnlp...
Has anybody any idea?
thanks for all
Antonio

The web.xml is:
<?xml version="1.0" ?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
<mime-mapping>
<extension>jnlp</extension>
<mime-type>application/x-java-jnlp-file</mime-type>
</mime-mapping>
<servlet>
<servlet-name>JnlpDownloadServlet</servlet-name>
<servlet-class>com.sun.javaws.servlet.JnlpDownloadServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>JnlpDownloadServlet</servlet-name>
<url-pattern>*</url-pattern>
</servlet-mapping>
</web-app>
and the jnlp is:
<?xml version="1.0" encoding="utf-8"?>
<!-- edited with XML Spy v3.0.7 (http://www.xmlspy.com) by cugel (gedas) -->
<!-- JNLP File for Reingenieria Application -->
<jnlp spec="1.0+" codebase="http://arrahona.gedas.es:81/mb1/web/WEB-INF/app" href="launchMBloque1.jnlp">
     <information>
          <title>Migracion Bloque1</title>
          <vendor>Gedas Iberia</vendor>
          <homepage href="docs/help.html"/>
          <description>Migracion Bloque1</description>
          <description kind="short">Migracion Bloque1</description>
          <icon href="teclaPorticT.gif"/>
          <offline-allowed/>
     </information>
     <security>
          <all-permissions/>
     </security>
     <resources>
          <j2se version="1.2"/>
          <jar href="MigracionB1.jar" version="1.0"/>
     </resources>
     <application-desc main-class="portic.pantallaPrincipal.gui.IniApp"/>
</jnlp>
so, i have all the files at the same directory...

Similar Messages

  • How to open each CS version file in its proper version program when double-clicked?

    Hello everyone,
    This one is about the coexistence of Indesign CS4 and CS5.
    In my company: I'm working with Indesign CS4, but a colleague is testing CS5 in real day-to-day works, and everyday I come across CS5 files that I need to correct, so I have CS5 installed too. Now, when I boot in the morning, and no Indesign program is open yet, whenever I double-click on an Indesign file, the system will open it with CS5, no matter if the file is CS4 or CS5. I find this quite annoying, of course. I want each version file to get open right away in the proper version of the program. I'd think this is happening to a lot of people, but I've been looking for the issue in the forums and haven't found anything.
    Of course I'm using roundabouts like having my colleague write "_CS5" at the end of each file, put CS4 in my startup items (so that once the program is open, the issue works the other way around and any Indesign file opens just in CS4 when double-clicked…).
    Also, all the Indesign files appear on the desktop as CS5 files
    I would welcome any ideas on the subject, thanks!

    Muchas gracias! really useful. I'm gonna try it.

  • Unable to edit old versioned file in KM

    Hi,
    I have a requirement wherein I need to edit older versioned file in KM programatically. I have got the older version file but I am not able to edit it and it gives an error; "*this collection does not support workspace creation".
    Supopse, I have versioning enabled on /documents/Public documents/test folder programatically. I created new version of a file say test.txt in it through code. This much is working fine. But, editing of older versioned file is creating problem. I used the below code:
    IVersionHistory iVersHistory = fileResource.getVersionHistory(); // fileResource refers to test.txt
    wdComponentAPI.getMessageManager().reportSuccess("IVersionHistory SIZE: " +iVersHistory.size());
    IResource resourceElement = null;
    name=fileResource.getName();
    IResource R1v5VCR=null;
    for(int i=0; i < iVersHistory.size(); i++)
      resourceElement = iVersHistory.get(i);
      list.add(resourceElement);
      if(resourceElement.getName().equalsIgnoreCase("test(3).txt"))
        //resourceElement.setAsCurrentVersion();
       ICollection collection = folder; // refers to /documents/Public documents/test folder
       wdComponentAPI.getMessageManager().reportSuccess("Reached "+collection.getRID());
       if( collection.isA(IExtendedCollection.class) )
         wdComponentAPI.getMessageManager().reportSuccess(" extending ");
         IExtendedCollection extendedCollection = (IExtendedCollection)collection.as(IExtendedCollection.class); 
         ICollection workspace = extendedCollection.createWorkspace("myworkspace", null); ---> Error on this line
         wdComponentAPI.getMessageManager().reportSuccess("Created test folder workspace ");
         IExtendedCollection Wa = (IExtendedCollection)workspace.createCollection("test",null).as(IExtendedCollection.class);
         R1v5VCR = Wa.createVersionControlledResource(resourceElement.getRID(), resourceElement.getName(),null);
         wdComponentAPI.getMessageManager().reportSuccess("Created New versioned resource ");
        // more code but unreachable code
    For editing a revision resource (i.e older version file), we have to create workspace on extendedCollection.
    I went through this URL: [http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/netweaver/netweaver-developers-guide-2004s/NetWeaverDevelopersGuide2004s_Documents/KM_articles_new/howto/rf/client_api/rf_client_api_sdn.html|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/netweaver/netweaver-developers-guide-2004s/NetWeaverDevelopersGuide2004s_Documents/KM_articles_new/howto/rf/client_api/rf_client_api_sdn.html]
    Let me know if you have any solution or suggestion in this context.
    Thanks,
    Udit

    Hi Julian,
    Tjanks for the reply. But I already moved with that approach. I was finally able to create the workspace and a new versioned resource inside the workspace. But I get a new error on checkout of the resource: "subsequent checkin is expected to cause a fork!"
    Below is the code snippet used:
    IResource R1v5VCR=null;
    IResource resourceElement = iVersHistory.get(5); // file(5).txt is coming properly
    IResourceMetadata resourceMetadata=(IResourceMetadata)resource.as(IResourceMetadata.class);
    IRidSet ridSet=resourceMetadata.getWorkspaceCollectionSet();
    IRidIterator iter=ridSet.iterator();
    RID workRID=null;
    while(iter.hasNext()){
    workRID=iter.next();}
    ICollection newWorkSpace=(ICollection)ResourceFactory.getInstance().getResource(workRID,resourceContext);
    wdComponentAPI.getMessageManager().reportSuccess("Created folder workspace ");
    IExtendedCollection Wa =(IExtendedCollection)newWorkSpace.createCollection("test",null).as(IExtendedCollection.class);
    R1v5VCR = Wa.createVersionControlledResource(resourceElement.getRID(),resourceElement.getName(),null);
    R1v5VCR.checkOut(); --> Error on this line
    So, this issue is taking time now and I want to resolve it soon.
    Regards,
    Udit

  • Why is the version file smaller than the original file, although I didn't make changes in the file? And why is the keywords don't exporting with original files?

    Hi! Why is the version file smaller than the original file, although I didn't make changes in the file? And why is the keywords don't exporting with original files?

    Wild guess: you're using the the wrong export settings. You'll need to tell us more before we can help you - like the export settings you're usng, the size and format of the originals etc.

  • Is there a way to not auto-convert documents to FrameMaker 9 when opening lower version files?

    Hi, All!
    Is there a way to prevent FrameMaker 9 from automatically converting lower version files to FrameMaker 9 when opening them?
    It becomes a problem when I just want to view the files. I have to save each chapter in the book to the lower version file again after viewing for my teammates to use them.
    Thanks.

    *** haven't checked, because I don't have any pre-9.0 files easily available ***  ... but from what I remember, if you're really just viewing the files in 9.0 you should need to save them explicitly back to an earlier version. FM may mark the files as "changed" when it opens them, but that's because it checks things like datestamps and cross-references. If you do not, yourself, explicitly change any content in the file you have opened, you don't need to save the changes; just close the file unsaved.  Check my supposition with a couple of files before relying on it! And other people will be able to give you a more detailed explanation of why file you haven't touched yourself still show up as "changed".

  • CAN CF8 REPORT BUILDER  SUPPORT PDF CHINESE VERSION FILE?

    why the report builder of coldfusion 8 can not support the PDF chinese version files? Does it need install any other plugin to support it?
    Thanks advance for your reply!

    what seems to be the problem?
    did use the right font? set the correct encoding? can you produce "chinese
    version" (whatever that means) HTML?

  • [svn:fx-4.x] 14680: update AIK version file with correct version of the AIK that we have

    Revision: 14680
    Revision: 14680
    Author:   [email protected]
    Date:     2010-03-10 12:16:06 -0800 (Wed, 10 Mar 2010)
    Log Message:
    update AIK version file with correct version of the AIK that we have
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer: no
    Tests run: no
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/branches/4.x/in/air/air_version.txt

    With all that automatic installations, beware of one thing:
    It's up to the administrator of the machine to decide what VM he drives. Maybe there is a good reason for the admin NOT to drive the latest VM from Sun but a slightly older from IBM? It is not YOUR decision what VM runs on that machine.
    Keep in mind that the JRE is a wrapper around the actual OS and as such it is not to be included with you app. Just think of it as if it would be an optional OS extension. You also do not deliver Oracle with you app if you just need ANY JDBC connection, do you?
    With our customers we do it this way: We tell them that ANY Java 1.4 JRE is good to run our apps, but it is the customer's problem to get one, since we do not know the preferred VMs of that customer, nor could we provide a VM for every OS. For fairness reasons, we provide the latest Sun JRE for Windows, Solaris and LINUX with our app. But we do not start the installation of this.

  • Hic, help me ! thanks. get version file AI, EPS by C

    i have file .ai and .eps ,
    MyApp used C# , i want get version file ... help....
    the same get version indesign : Re: [Ann] Identify Your InDesign File by Tony722

    You are running jrockit (BEA JRockit(R) R27.6.5-32_o-121899-1.6.0_14-20091001-2113-linux-x86_64), but you have
    some Sun JVM parameters
    -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=128m
    These are ignored by jrockit, but should not be in your start script.
    Maybe this could be causing the issue
    -agentlib:jprofilerti=port=8849,nowait,id=107,config=/opt/jprofiler5/config/config.xml -Xbootclasspath/a:/opt/jprofiler5/bin/agent.jar
    If you want to profile your environment and you are using jrockit, you can use jrockit mission control:
    http://download.oracle.com/docs/cd/E15289_01/index.htm

  • Enterprise portal version file not found

    During sapinst the following error message popped up:
    CJS-00328 Enterprise portal version file not found. DIAGNOSIS: The enterprise portal version file was not found at the expected location (6.0.9.0.0). SAPinst cannot check for the required version <#1>. Your enterprise portal software might be too old. Solution: Update the enterprise portal version to <#1> or higher.
    Where should I find this version file?
    I'm running NW04 SPS16 (Installed from SR1, and successfully updated to SPS16).

    SAP Note 847491 is the solution for the problem:
    From the note:
    Copy the portal version file from its current location to the place where the system copy tool looks for it.
    To do so:
    Copy the directory:
    \usr\sap\<XXX>\SYS\global\portal_versions\*.*
    to
    \usr\sap\<XXX>\JC<XX>\j2ee\portal_misc\versions
    if you are running on a Unix platform make sure that all the files are owned by the j2eeadm:sapsys owner.

  • New version file can be opened in old version

    can any one tell how to open 8,5 version files in 8.2 version
    Solved!
    Go to Solution.

    Yes.
    - Partha
    LabVIEW - Wires that catch bugs!

  • Older Version File

    Hi!
    I have an old flash version file, prior to the MX 2004, and
    the new Flash 8 won't open it. I never tried to open a file in
    flash from a different version until now, and I thought it could be
    a corrupted file or something, but some colleagues are telling me
    that Flash doesn't open files from different versions and I just
    can't help to ask "What?! How?! WHAT?!"
    I really hope they're wrong 'cause that's just plain stupid.
    So, is there a way? Or DO I HAVE TO install my old Flash software
    to open the old files?!
    Thanxs

    > If CS5 can do it, why not CS6? ...  If CS5 can read a 6.0 project, and CS6 can read a CS5 project, it stands to reason that it's not that difficult.
    It's a matter of testing resources. If we were to allow After Effects CS6 (11.0) to read files all the way back to version 1.0, then we'd have to test opening of files for every version all the way back to 1.0, making sure that every feature worked and was converted correctly. This is an immense amount of testing. We have determined that going back five versions (to 7.0) is enough to satisfy nearly everyone's needs---especially since the few people who still need to convert files from even earlier versions have the workaround of doing a two-step conversion process by way of After Effects CS4, CS5, et cetera. We spend the time that we save on testing other features that we expect that far more people will use. That is the nature of software development with finite resources.

  • Stop Pages version files cluttering up my folders?

    Version files for Pages docs are saved to the same directory as my doc. Can I stop or hide or relocate these?
    (I think they're version files!!! They're a copy of the last saved version with "~" appended to doc name. I'm not getting this with other apps that I've disabled autosave for.)
    I'm running Mountain Lion.
    I've disabled autosave for Pages with command "defaults write com.apple.iWork.Pages ApplePersistence -bool no"
    "Ask me to keep changes when closing documents" in System Preferences/General is checked.
    "Back up previous versions when saving" in Pages Preferences/General is unchecked.

    Don't worry about them. Among the things iPhoto 6 does when it updates, is updates the content of the thumbnails to be more compatible with iPhoto 6. If you interrupted that process when it was doing it, it may leave behind temporary information that should not be deleted.

  • Delete Previous Version - file associations

    Have a question on file association problems when deleteing previous version of PS.
    For example user bought CS5 and  installed.  File Associations now changed by defauilt to CS5.
    If user un-installs CS4, the file associations now revert back to CS4, even though that version is not on computer.
    Changing file associations is Bridge and in the OS does not solve file association problem.
    One either has to uninstall PS and wipe Adobe files, then re-install latest version, or go into OS registry and make changes.  Registry changes can be difficult for many.
    I am sure when CS6 is released we will again have this same scenero, as outlined above, repeated unless the code has been changed.
    The question is:  In CS6 will this bug have been eliminated?

    Just because it's happend to multiple people doesn't make it not machine or user specific (a problem with user permissions on one computer can happen on another as well). I've never seen this behavior on any of my systems and I have to install and uninstall random versions of the software all the time. The most recently installed version of the software should always have the file type associations, regardless of what versions have been removed.
    Have you been able to reproduce the issue on your own machine during testing?

  • Insert Object Link to Versioned File in a SharePoint Library

    I apologize in advance that I am not well versed in SharePoint and Objects. 
    I am trying to set up a master PPT file that uses the INSERT/OBJECT/CREATE FROM FILE/LINK function.  This is where an image of the source file is displayed in the master file.  When the master file is opened, the user is presented with the choice
    to update links.  I am not using code.  Just menu options.
    The master file can reside either in SharePoint or outside SharePoint.  The source files will reside in a SharePoint 2010 versioned library.  The most recent version should be linked. 
    When I try to insert the object, I don't know what path to enter.  Is there a way to do this?
    Thanks you.

    Instead of referring from an external location, try embedding the images and keep all resources inside PPT.
    Aravind 

  • Transferring Aperture version files from notebook to iMac ?

    Hi
    I have been working with my Aperture on my Notebook as I have travelled and would now like to transfer these versions to my i mac Aperture when I get home.
    Is this possible and what is the best way to do it ?
    Or should I save versions to my Notebook HD and then transfer to my i Mac ?
    many thbnks if you can assist .
    cheers
    Roger

    Roger,
    Aperture has a "Merge" mode when reimporting an Aperture library, that has been edited, back to the library it has been copied from.
    Connect your travel mac to your iMac in target disk mode (OS X Lion: Transfer files between two computers using target disk mode) so that your iMac sees the notebook as a disk (requires Firewire), or copy your Aperture library from the notebook to an external disk.
    Then launch Aperture on the iMac and use "File > Import > Library".
    When prompted opt for "Merge" not "Add" and select to keep the versions from the Notebook.
    See the manual: Working with Library Files, To merge the modified library from the second computer into the library of the first computer
    As a precaution I'd repair both the libraries before merging:
    Aperture 3 User Manual: Repairing and Rebuilding Your Aperture Library
    Regards
    Léonie

  • Determine the Version (File Format) in which the report was created.

    I have an application which hosts various reports, these reports are all in Crystal 8.5. I want to switch some of these reports to Crystal 11 reports and also add new reports. Hence I will be displaying both Crystal 8.5 and Crystal 11 report in my application. Is there a way to determine the File Format Schema / Version in which the Crystal report was created at run-time so that i can then call the instance of that specific report viewer on my form and display the report. My Application uses VB6.
    thank you.

    Hello,
    Moved to Legacy SDK forum.
    Yes, use the Object browser for the RDC and search on major and minor version you'll find info on how to get the report version.
    If you can't figure it out I'll up date the post tomorrow with sample code.
    Now that I have my test machine going again with VS 6 running I looked and I lied, the RDC only returned the version of the engine and not the report. The new CR Assemblies will allow you to get the report version.
    Thank you
    Don
    Edited by: Don Williams on Dec 12, 2010 2:32 PM

Maybe you are looking for

  • OS X  10.6.8 upgrades.

    I am currently running on Safari 5.0 on my iMac (OS X 10.6.8) and I have noticed recently that several websites are telling me to upgrade to the Safari 6.0.  Can anyone advise if this is a free upgrade or do I have to pay for an upgrade combo through

  • GPS in-Car Navigation

    Hi Does anyone know of an in-Car GPS system that is compatible with a MacBook Pro Version 10.6.8 Snow Leopard. (IE: Navman is not compatible). Thanks in advance Don.

  • IPod ,Windows 7, Uploading New Tunes Not From ITunes !!!

    My IPod Sync with ITunes on my NoteBook No Probs their But I Can't get My other Music on to my IPod that's Not From ITunes. My NoteBook(EeePC1005,Running Windows7) Keeps Telling Me it Can't Find My IPods Driver Windows Has sent Updates Searched the N

  • Unable to see SAP Help files properly

    Hi, I had downloaded some SAP help documents (.chm) files. I am unable to view the contents. The tree view in the left side is coming but when I click any of the topics, 'Action Cancelled' message is displayed in the right side pane. I am using Windo

  • ACE - Policy map bound to multiple interface

    Hello, I have a policy map bound to multiple VLAN interfaces. The policy is pretty standard, any traffic hitting the VIP is load balanced. Now, is it ok to assign the same policy map / VIP to to multiple VLAN interfaces on a virtual context? I additi