Impact of different jars in newer endeca version?

Hi,
The older version of endeca (before experience manager) had some jars which are either unavailable or new in the newer version. I am migrating from the older to the newer version and wanted to know if there would be any impact if i use the old jars or should i be using the new jars and there wouldnt b an impact?
PFB the table listing the differences :
Old installation
New Installation
AdvJDBCColumnHandler.jar
bsh-2.0b4.jar
bsh-2.0b4.jar
commons-codec-1.5.jar
commons-io-1.4.jar
commons-lang-2.4.jar
cadk-library-1.0.jar
casStubs.jar
eacComponents.jar
eacComponents-3.1.2.jar
eacHandlers-3.1.2.jar
eacToolkit-3.1.2.jar
eacHandlers.jar
eacToolkit.jar
httpclient-4.1.jar
httpcore-4.1.jar
httpmime-4.1.1.jar
spring-2.5.6.jar
javaManipCommon-1.1.jar
ojdbc6.jar
scjdbc.jar
spring.jar

Sorry, you meant two <resources> in the same JNLP? I can't put "activation.jar" in the same JNLP than the rest of my application, because it's already signed by Sun, but I did try to have in "activation.jnlp" two <resources>, an empty one for version 1.6+ and the JAR in the second one for "1.5". Didn't work either, the JAR gets downloaded.
Same thing for several <resources> in the main JNLP, one for "1.5" including the extension for activation.jar, the other for "1.6+" listing the same contents but without that extension. No matter how I try, I get the console message "JNLP JREDesc in Component ignored". (If I just include everything in one single resource for "1.5+", I don't get that error, so it's not a typo in the <j2se> tag ;-)
Edited by: cato_minor on Mar 26, 2009 12:00 PM

Similar Messages

  • One JNLP with different JARs depending on JRE version

    Hello everybody! I want to produce one JNLP file that, depending on the user's Java version, loads a particular JAR or not. As an example, Java Activation Framework is included with Java 6 (no download needed), but not with Java 5. This serves just as an example, as that particular library is very small. Still, a user with Java 5 needs to retrieve and load "activation.jar", but Java 6 users might be better of with their built-in version. I know that I can mark the whole JNLP for a particular version (<java>) and that I can make a resource depend on "osName" and "arch". Does anyone know whether such a JDK-dependent resource (or JAR) is possible with JNLP syntax?
    Alternatively, I can programmatically download the library, but loading it is cumbersome: I just want to use JavaMail (which needs the Activation Framework) right away, it seems to me that with a custom URLClassLoader I cannot access the library directly (as I need classpath-like access to the Activation Framework)... and I'm hesitant to hack into Reflection as mentioned here.
    I'll just provide activation.jar for all of my users, including Java 6 ones; but I'm curious what would be the best way to handle such a situation. I did search the web and the forums a lot, sorry if I missed something obvious.

    Sorry, you meant two <resources> in the same JNLP? I can't put "activation.jar" in the same JNLP than the rest of my application, because it's already signed by Sun, but I did try to have in "activation.jnlp" two <resources>, an empty one for version 1.6+ and the JAR in the second one for "1.5". Didn't work either, the JAR gets downloaded.
    Same thing for several <resources> in the main JNLP, one for "1.5" including the extension for activation.jar, the other for "1.6+" listing the same contents but without that extension. No matter how I try, I get the console message "JNLP JREDesc in Component ignored". (If I just include everything in one single resource for "1.5+", I don't get that error, so it's not a typo in the <j2se> tag ;-)
    Edited by: cato_minor on Mar 26, 2009 12:00 PM

  • Adobe Cloud has 2 different Muse programs.... how do I know which one is the newer better version?

    So I am new to Muse, and my Adobe Cloud has 2 different programs from Muse... how do I know which one is the newer better version?
    One Must program (Muse CC 2014.2)  has a black background when working on it... it looks like other Adobe programs such as Photoshop.
    The other one is light color (Muse CC) very similar to the black color Muse on functions.....
    One of the difference I notice is that the light color Muse has a few widgets in the library, while the black background Muse seems to have an empty library
    So... why are there 2 different Muse programs in my Adobe Cloud?

    Hi
    The latest version of Muse is 2014.2, so you need to uninstall another version of Muse manually.
    regarding the items in Library, you can add items in your library manually, as shown in this article
    Adobe Muse Help | Organizing and reusing design elements using Library panel
    Please let me know if you have any other query.

  • Deployment Issues, Different  Jars for Diff Java in one application.

    HI,
    I need to put classpath (Jars) for my WEB-INF/classes. Different Jars for Diff files in one application.
    The problem is , for one ofmy application, the lib files are x.jar and y.jar , x is older than y but have same
    lib files. in x and y, there is one class , r.java , which have a method method1(). whey they are doing modifications in y.jar , the r.java has changed to new vertion, the method method1() they re-written the body.
    My application have 5 java files, in which 2 files uses r.java imported from the x.jar earlier.
    Now we need to use y.jar because , the y.jar have more files added with good futures. But the earlier 2 files are giving exception if i use y.jar.
    I need solution for this. how can i put classpath for the 2 files to use the x.jar and other files to use y.jar in the same application.
    I am using a Tomcat 4 server. only Servlets, JSPs I am using.
    Thank you,
    Kiran

    I may be missing something here, is y.jar a newer version of x.jar? And if it is do you need x.jar at all? Are there classes in x.jar that do not exist in y.jar? Can you modify your application to provide the same functionality and only use y.jar?

  • Reload same jar file of diffrent version

    Hi Freinds ,
    I have used the code below for loading the jar at runtime, but I need to reload the same jar of different version during runtime with out restarting my apllication.
    is it possible, if yes Could you please help in that ?
    public void addURL(URL u) throws IOException {
    URLClassLoader sysloader = (URLClassLoader)ClassLoader
    .getSystemClassLoader();
    Class sysclass = URLClassLoader.class;
    try {
    Method method = sysclass.getDeclaredMethod("addURL", PARAMETERS);
    method.setAccessible(true);
    method.invoke(sysloader, new Object[] { u });
    catch (Throwable t) {
    t.printStackTrace();
    throw new IOException(
    "Error, could not add URL to system classloader");
    }// end try catch
    }// end method
    Thanks a lot in advance.
    Please copy the code snippet.
    Thanks,
    KK

    Obviously you can't do this. ADF projects done in version x need a server with ADF runtime x. Check http://wp.me/pcBZk-7S for matching versions.
    What You can try is to open the 11.1.1.6 property in11.1.1.5 and compile it and create a new jar in the lower version.
    Timo

  • How can I edit an iMovie 10.0.3 project on a different computer with an older version?

    I am trying to caption a video using the Titles feature. However, 10.0.3 has a bug that won't allow font changes in titles, which is making the captions inconsistent in terms of size and font, which looks terrible. How can I fix this? Is there any way to share the project with a different computer with an older version of iMovie, to make the edits there? So far, the video will transfer but the other project files (including the captions) won't open in the new version.

    You can't use a project created in iMovie 10 with earlier iMovie versions.  If you are only adding titles you could always re-import the video into a Mac running an earlier version of iMovie or share the iMovie 10 video to file and import into the earlier version.
    Some titles in iMovie 10 do allow changing font and size though.  Its a matter of trying out the various options.  If you are running Yosemite its worth upgrading to version 10.0.6 which I think improved title adjustment options as well as a number of other things.
    Geoff.

  • My ipod 5.1.1 (9B206) will not sync with new Itunes version 12.0.1.26. Can anyone help

    My ipod touch 3rd generation OS  5.1.1 (9B206) will not sync with new Itunes version 12.0.1.26. Can anyone help

    What exactly happens when you try to sync?
    Does iTunes see the iPod?
    Was the iPod previous synced to another iTunes library/computer?
    Have you successfully synced from this iTunes library/computer before?
    If so have you done anything like update iTunes on the computer since it last successfully synced?
    Do the songs play in iTunes?          
    Does any media now sync to the iPod?
    Do you have the right boxes checked to sync?
    iTunes: Syncing media content to iOS devices and iPod       
    Try syncing using the manual method                
    Managing content manually on iPhone, iPad, and iPod
    If iTunes does not see the iPod:
    iOS: Device not recognized in iTunes for Mac OS X
    Or
    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or                     
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • I've installed bootcamp 4.0 on my iMac 27. Everything works superb, but for playing need for speed run or battlefield 3 I need catalyst driver 11.7 or higher. How can I update my graphics? Is there a possibility except waiting for a new bootcamp version?

    I've installed bootcamp 4.0 on my iMac 27. Everything works superb, but for playing need for speed run or battlefield 3 I need catalyst driver 11.7 or higher. How can I update my graphics? Is there a possibility except waiting for a new bootcamp version?

    But how do you install the drivers if Bootcamp is running interference?
    Bottom line, I'ev tried to install three different versions of updated ATI driver sover the last few momnths and on each and every occassion have ended up with the original Bootcamp driver. A number of current games are unplayable on a Mac running Bootcamp as a result.
    And if I can't run the software I want, then Bootcamp is as useless as boobs on a bull.

  • Can I deploy the entity bean in different jar files?

    I have an application EAR, which contains several JARs. I have an entity bean A that has relationships with 2 other different entity beans B and C in the same DB. Now, I have to deploy this entity A together with B in AB.jar, and A with C in AC.jar. Both AB.jar and AC.jar are modules of the same application EAR file. They all use the same data sources to the same database, and named by different <ejb-name>.
    I have no problem with deploying the app to WebLogic 8.1. But the JSP page accessing entity A got errors. Sometime, it got error complaining that the container-generated ejbFindAccount mehtod is abstract.
    My questions are,
    Can an entity bean be defined twice in 2 different jars?
    When container load AB.jar and AC.jar, does it generate the finder methods twice?
    I guess there are some name conflicts going on here. What should I do to avoid it?
    Any comments are very much appreciated.

    Thanks for your answer, but how can I use it in connection with relationships?
    <!-- ********************************************************************** -->
    <!-- Relationship: View to FrameworkUser                                             -->
    <!-- ********************************************************************** -->
    <ejb-relation id="View-FrameworkUser">
         <description></description>
         <ejb-relation-name>View-FrameworkUser</ejb-relation-name>
         <ejb-relationship-role>
              <ejb-relationship-role-name>Views-have-FrameworkUser</ejb-relationship-role-name>
              <multiplicity>Many</multiplicity>
              <relationship-role-source>
                   <ejb-name>View</ejb-name>
              </relationship-role-source>
              <cmr-field>
                   <cmr-field-name>frameworkUser</cmr-field-name><!-#- getter/setter -#->
                   <cmr-field-type>java.util.Collection</cmr-field-type>
              </cmr-field>
         </ejb-relationship-role>
         <!-#- *************** -#->
         <ejb-relationship-role>
              <ejb-relationship-role-name>FrameworkUser-has-Views</ejb-relationship-role-name>
              <multiplicity>One</multiplicity>
              <relationship-role-source>
                   <!-#- *******REFERENCE******** -#->
                   <ejb-name>ejb_foo_jar2_ejb.jar#FrameworkUser</ejb-name>
                   <!-#- *******REFERENCE******** -#->
              </relationship-role-source>
         </ejb-relationship-role>
    </ejb-relation>
    ...this obviously doesn't work...
    Do I have to write a new <entity> where I define the referenced entity?

  • 80Gb Ipod new software version

    I have an 80 Gb Video iPod that I bought several months ago. My friend just bought a new one this past week. Hers is slightly different (thinner form factor), but the big difference is the new software version. It's much nicer. However, my iPod does not show any upgrades for software.
    Is the new interface not going to be backwards compatible with the old hardware or is there another way to get it?
    Thanks

    Is the new interface not going to be backwards compatible with the old hardware
    Unlikely.
    is there another way to get it?
    No.

  • Different jar files access

    I m facing an unknown problem in my jar file. My manifest file contains-
    Manifest-Version: 1.0
    Class-Path: lib/mysql-connector-java-5.1.5-bin.jar ntools.jar
    Created-By: Tanvir
    Main-Class: Logon
    Yet, in my application a class can't be accessed which is in ntools.jar.If I just put - Class-Path: lib/ntools.jar , then it finds the class.I know that different jar file is separated by space.I did the same thing then why it is not finding classes in one jar but not classes in another jar.

    remove the ntools from the Class-Path entries list.
    it should only contain the external jar

  • Selecting New Production version while Splitting a Production Order

    Hi SAP Gurus,
    Is there any option of selecting a New Production Version for a split Production Order?
    I have a production Order with three operations 10.20 and 30. This production Order is curently using the Production Version 001. Now , i have split the production order at Operation 30 and want to select new production Version 002 for the same.
    Can you please let me know if this is possible?

    Hi Sandeep,
       If you don't mind can you please let me know for what purpose you want to assign a new production version to production order after splitting at operation 30?
       To quickly recap, Production version is used if you have alternative BOM or alternative routings for a material. Based on Production Version that you have assigned in Material Master - MRP screen, your Routing and BOM details are selected.
        So how is this Production Version 002 different from Production Version 001 - is it in terms of routing or bom?
      With Best Regards,
    Srinivas

  • TS4212 why my computer is not accepting new latest version ? 10.6 version i have macbook i have apple software cd

    why my computer is not accepting new latest version 10.6 i have apple cd new latest version cd why is showing me mac
    ox cannot be installed to this computer ? please help me

    You can't use a disk which originally shipped with a Mac on a different Mac model. You also can't install Mac OS X 10.6 on a PowerPC Mac.
    (67906)

  • New firmware version is out for Megastick 128

    There is a new firmware version (2.05)  for the Megastick 1 (128). Get it from Megastick 1 firmware page

    I upgraded it and didn’t see any major differences. However now there are many volume steps. Apart from that I noticed that when the radio is not tuned to a proper channel there is no noise, not a useful thing but those are the only differences I saw. Still cant record in 44k (records in 22k format). Anyone tried it and saw anything different ?
    One other thing, I don’t know whether this existed in earlier firmware versions, when you have a normal file which is not an MP3 file with the .mp3 extension you cant turn it on. I came across this when I tried putting several non MP3 files (ogg ) having the mp3 extension after .ogg didn’t work to see whether they have added support for new standards (Slim chance but who knows…   )

  • New Safari version - browsing slow ?!

    Sorry for my english:
    Browsing in Safari is extemely slow sinds this afternoon. Pageloads take 20 - 30 sec. Beside that parts of pages are missing (not to bad though its partly content, but ususally the advertisements etc.)
    I've had an automatic software upgrade and it looks like I have the same O.S. (10.7.4.) but I think i have a newer browser version. I'm not sure though: it looks different (no seperate google bar anymore) and is called 6.0 (7536.25) - dont know what version i had before.
    I've reset Safari (sorry dutch version, I mean the function the function just under 'Privat Mode'). Didn't help.
    I would love the option to downgrade to 5.?. But couldn't find it on the site. Is this possible? Any other idea's.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, you can’t boot in safe mode.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

Maybe you are looking for