Launching a signed application that requires ibm-jre-1.5.0 from sun 1.4.2

I am having problems with java web start not starting my application.
The progress gui shows 'starting application' while the progress bar keeps blinking away.
The application jars are signed using IBM-jdk's jarsigner.
The setup is as follows:
The client machines have only Sun's jdk-1.4.2_05 installed.
The application requires a Java5 jre, so a jnlp file has been crafted that installs the required jre (provided by WebSphere thin client).
The jre-installation goes well, i.e. the jre shows up in the web start guis as installed by the name specified.
When web start tries to run the application on the 1.5.0-jre, it fails with the following produced in the web start log file:
Java Web Start 1.4.2_05 Console, started Tue May 12 15:10:46 CEST 2009
Java 2 Runtime Environment: Version 1.4.2_05 by Sun Microsystems Inc.
Logging to file: C:\javaws.log
Java Web Start 1.4.2_05 Console, started Tue May 12 15:12:30 CEST 2009
Java 2 Runtime Environment: Version 1.4.2_05 by Sun Microsystems Inc.
Logging to file: C:\javaws.log
IBM WebSphere Application Server, Release 6.1
Client Runtime Installer Tool
Copyright IBM Corp., 2004, 2006
Start installation.
Found [java/jre/bin/javaw.exe] at
file:C:/Documents%20and%20Settings/apptest/Application%20Data/Sun/Java/Deployment/javaws/cache/http/D<myserver>/P9080/DMruntime/RMWASThinClientJRERuntime-6.1-windows.jar!/java/jre/bin/javaw.exe.
Extracting: C:/Documents and Settings/apptest/Application
Data/Sun/Java/Deployment/javaws/cache/http/D<myserver>/P9080/DMruntime/RMWASThinClientJRERuntime-6.1-windows.jar.
Extracting IBM WebSphere Application client runtime [1.5.0]:
C:\Documents and Settings\apptest\Application
Data\Sun\Java\Deployment\javaws\cache\.ext\E1242133972562\.
Finished installing the IBM WebSphere Application client runtime in
C:\Documents and Settings\apptest\Application
Data\Sun\Java\Deployment\javaws\cache\.ext\E1242133972562\.
Finished extracting IBM WebSphere Application client runtime.
Java Web Start 1.4.2_05 Console, started Tue May 12 15:14:20 CEST 2009
Java 2 Runtime Environment: Version 1.5.0 by IBM Corporation
Logging to file: C:\javaws.log
Exception in thread "javawsApplicationMain"
java.lang.NoClassDefFoundError: sun.security.util.DerInputStream
at com.sun.javaws.security.SunSecurityUtil.getExtendedKeyUsage(Unknown Source)
at com.sun.javaws.security.SunSecurityUtil.checkLeafKeyUsage(Unknown Source)
at com.sun.javaws.security.SunSecurityUtil.checkExtensions(Unknown Source)
at com.sun.javaws.security.SunSecurityUtil.checkTrustedChain(Unknown Source)
at com.sun.javaws.security.CertificateDialog.verifyCertificate(Unknown Source)
at com.sun.javaws.security.AppPolicy.grantUnrestrictedAccess(Unknown Source)
at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source)
at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source)
at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Thread.java:810)
Java Web Start 1.4.2_05 Console, started Tue May 12 15:17:15 CEST 2009
Java 2 Runtime Environment: Version 1.4.2_05 by Sun Microsystems Inc.
Logging to file: C:\javaws.log
Java Web Start 1.4.2_05 Console, started Tue May 12 15:47:10 CEST 2009
Java 2 Runtime Environment: Version 1.4.2_05 by Sun Microsystems Inc.
Logging to file: C:\javaws.logI am quite unsure what to do. The DerInputStream is in the 1.4.2's rt.jar.
I am confused as to who is actually having the problem, the sun web start JRE or the ibm jre.
Does anyone have any hints?
Thanks,
/Morten

Found it!!!
It was not the applet.-tag... But the JRE that copies the proxy-settings from IE at some point (installation maybe) and uses those settings allthough I changed my settings in IE to work on our intranet.
So I just changed the proxy-settings in the JRE control panel and now it works fine.
/Peter

Similar Messages

  • I have a MacBook Pro and OS10.6 and am trying to log into a site that requires me to enter a code from a picture ... problem is all I get on the screen is a white '?' in a blue box. What do I need to display the picture?

    I have a MacBook Pro and OS10.6 and am trying to log into a site that requires me to enter a code from a picture ... problem is all I get on the screen is a white '?' in a blue box. What do I need to display the picture?

    Reload the page. If it doesn't load, choose Activity from Safari's Window menu, find that picture in the list, and see what it says to the right; this may reveal what the problem is.
    (91827)

  • Is there an application that allows you to read iBooks purchased from iTune

    Is there an application that allows you to read iBooks purchased from iTune. like Amazon books for Kindle ?

    Yes it is the iBooks reader that comes with the iPad.
    There are readers foe Barnes and Noble (eBook) & (nook) and Amazon (kindle).
    But iBook comes preinstalled.

  • NAC Cisco Clean Access Agent - launch self signed application, remediation

    Hi,
    we are trying to run custom executable in remediation process with non-admin rights. As I understand it there are following requirements in order to be able to do that:
    1) CAA Stub have to be installed
    2) Application have to be signed with trusted certificate
    3) Certificate and Application details have to be written in registry structure to be trusted by agent stub.
    We've followed every step in documentation but still receiving the same error in event log:
    "jada_jada.exe" is not a qualified file to be executed.
    Can't figure out why is it refusing to execute it, we tried every combination.
    Any idea what may be preventing it?
    Thanks

    Hi,
    thank you for reply ... yes I have root cert installed on client machine, when I look at file properties, it says certificate is OK. One thing that comes to my mind though is that I am member of domain, so maybe certificate have to be installed as root at domain controller?
    When I have the opportunity I will try it.

  • How can I Launch a Java application that I have written using an icon

    I have just finished writing a Messaging system like Ms Outlook written completey in Java. To run my application , I would normaly type: java and then the class containing the main method eg java LogonFrame.
    How can I launch my application by just clicking on an icon ?.
    How can I also package and install this application the way most conventional application are packaged and installed. Do we have a sort of "java Installer" ?.
    Thank you.

    Just make a .bat file. Open notepad, type something like
    @echo off
    javaw -classpath %~d0%~p0 Package.MainClass %1
    Now make a shortcut to this file. Rightclick the shortcut and select start in "minimized". Thats it...
    Nille

  • Application that requires Classic but there's no box to uncheck!

    I am using Tiger (updated) and there is an application I am trying to open (it's a medical cd-rom, LCP-system, an interactive presentation of a product) that informs me to start Classic.
    I don't have Classic, so the system tells me that I don't have a Mac OS 9 folder and it quits.
    When I click 'get info' on the app, it says 'kind: application (Classic)', but there is no box 'start in classic environment' to uncheck!
    How can I open it without installing Classic, which I don't have nor need in any other situation nor want?
    Thank you for the interest.

    And another thing.
    As with many other problems I encountered since switched to macs (1 month ago) I realised that part of the solution can be found on your own , or in the manuals. But when switching from PCs you have the idea and the expectation that macs don't crash, and in general don't have the same problems. So, if one appears, first, you don't know your way out even to system properties, prefs, etc. and then , you think that if something like that happened to a machine like this one, maybe I shouldn't just e.g. delete the main folder of an operational system , aha!

  • My new MacBook Pro keeps asking for my password in any application that I am in. I transferred from old Mac Pro via Time Machine

    My new MBP will randomly ask for my password. It doesn't matter what application I am in, it could be in the middle of watching a dvd. The window will pop up.This is my second MBP, my last one kept crashing, and it was finally replaced. Can anyone help, please?
    Thanks

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • I need Firefox 3.6. How can I go back? I need it for a web-based software application that I use at work.

    At work (University of Texas at Arlington), I use a vendor-provided web-based application that requires Firefox 3.6. I've uninstalled Firefox and tried to install 3.6, but I got Firefox 6.0. When I start Firefox now, it sometimes automatically updates so that at this point I'm using 7.0. I've lost some functionality in the application, and the vendor's tech support is not able to help with some things such as printing pages, user preferences, etc.

    You can get firefox 3.6.23 here
    * http://www.mozilla.org/en-US/firefox/all-older.html
    * see also [[installing a previous version of firefox]]
    You may consider seeing if there is a firefox 3.6.23 portable version available if you are using it for one particular application only, you could then use firefox 7 for other browsing.
    * see http://portableapps.com/apps/internet/firefox_portable

  • When I go into any app that requires me to use the key board I instantly go back to the home page and can't access anything (not even settings)

    When ever I go into an application that requires me to use the key board the app just closes down and takes me back to the home page.  I can't even get into settings.  Also if I bring up the key pad it just sticks after I press a couple of keys?  Help?  I can't get into fb/pages anything!

    Try This...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Need end user application system requirements

    I am writing a proposal for developing an end user DLL or standalone application, using LabVIEW 7 and IMAQ vision. I need to paste in an electronic copy of a description, preferably from NI itself, of what system the user will need, including RAM and disk space requirements, operating system, etc. The software would be developed and tested only on a Windows 2000 machine. This electronic document would be something like the release notes from the LabVIEW Application Builder. Got a URL or something to send by email?

    The Release Notes say:
    "When you deploy an application you build, the LabVIEW Run-Time Engine requires a minimum of 64 MB of RAM and a screen resolution of 800 × 600 pixels for applications that require a screen, but National Instruments recommends 256 MB of RAM and a screen resolution of 1,024 × 768 pixels."
    And on Windows, "The LabVIEW Run-Time Engine requires at least 25 MB of disk space, but National Instruments recommends 155 MB of disk space if you install the default drivers from the National Instruments Device Drivers CD."
    If we need to add more details on this issue, can you please email your feedback to [email protected] so we can address it in a future version of LabVIEW?
    Thanks!
    Kelly Holmes
    LabVIEW Documentation
    Kelly H
    LabVIEW Documentation
    National Instruments

  • I touch games that require moving the itouch side to side is not working

    I have a it touch 32 g. Everything works excepet for games that require tilting or moving I touch from side to side. When moving or titling
    nothing happens. What can I do.

    Try holding both sleep &amp; home button until Apple Logo appears it should get fixed. If not, reset your device by going to Settings > General > Reset > Reset all settings. Give me a heads up it got fixed.

  • JMF Application that runs without selection.

    What do I need to make a JMF Application that runs without selecting a media file from a directrey.
    I wish to have a folder of avi's that can be played the moment the player is activated. Auto play without selection from within the PC that it's running from. No applet.
    Thankyou

    viafax999 wrote:
    Why would you use a flakey app to replace a built in windows function that works fine?
    Turn on remote desktop sharing undr computer properties and run mstsc on the machine with kb, mouse and monitor to control the other pc's via rdp
    Synergy isn't that flakey. It just doesn't get along well with one particularly old program I use that access an online database via FTP.  When the FTP transfer is running, Synergy stops.  As soon as the transfer is done, it comes back.  Not even a minor annoyance for me.
    Synergy is not a remote desktop sharing function.  It is simply a keyboard and mouse sharing function like the old keyboard/mouse switch boxes.
    I've two computers on my desk; a work laptop and a home desktop.  Each has their own keyboards and screens.  With Synergy, I can use one keyboard and mouse to control both machines.  I simply move the mouse from one screen to another and control follows.  It's just like moving a mouse between multiple monitors on a single machine, except that I'm actually switching between computers.
    I thought Windows remote desktop functions are for just that - remote access to a machine where keyboard, mouse and screen are duplicated on the client.  If I'm missing something, please educate.  Also consider if it'll work with Windows7 Home Premium.
    Synergy is also cross platform, so when I fire up a Linux machine I sometimes use, it too can share the same keyboard and mouse.
    Thanks.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • I have installed Adobe Lightroom CC.  In the process of launching, a popup appears, that says:  "AN INTERNAL ERROR HAS OCCURRED.  Cannot create the required folder:  /Users/(my user name)/Library/Application Support/Adobe/Lightroom/Develop Presets."  So e

    I have installed Adobe Lightroom CC.  In the process of launching, a popup appears, that says:  "AN INTERNAL ERROR HAS OCCURRED.  Cannot create the required folder:  /Users/(my user name)/Library/Application Support/Adobe/Lightroom/Develop Presets."  So even though Lightroom CC is installed, it will not launch.  What do I need to do to allow it to launch?

    The problem was solved today.  Here's the full story.  I'm a Mac user.  At first I installed Lightroom CC on my iMac (desktop).  I had this problem so I called Adobe, and was referred to a "special unit" .  After about an hour the tech solved it for me ... we did a screen sharing and she took control of my computer for a loooong time.  Because of language difficulties, at first I wondered if she knew what she was doing but she eventually solved it.  Although she couldn't explain exactly what she was doing, she summarized it by saying "it was a permissions problem."  I asked if I would have the same issue later when I installed it on my laptop (Macbook Air).  She said probably not.
    But I did.  The same internal error popup arose on launch and launch did not complete on my laptop.  I tried chat but no joy so I eventually called Apple Care.  I had noticed that on my laptop (and the iMac for that matter), that there was no Library folder after my user name.  The Apple tech explained that the Library folder is actually there but it is hidden because it's very easy for users to do some very nasty things to their computer by going astray while in the Library folder.  The folder is actually there, but they hide it.  I did remember seeing that the tech helping me with my iMac had typed the work "Library" while she was controlling my computer.  Basically she had activated the hidden Library folder so she could open the path that Lightroom was trying to follow to create that "Develop Presets" folder.  For some reason, the inability to create that folder in the launch process was preventing launch from being completed.  The Apple tech said she didn't actually have to do that and activated the Library folder by use of the Go selection on the menu bar.  Anyway, once that complete path was replicated and opened, the next step was to go to the Lightroom Permissions field and add my user name to the user categories already there and enable "read and write" permissions to my user name.  Once done, I shut down my laptop, and then rebooted.  I launched Lightroom and then boom, voila, heavens to betsy, etc. it launched and suddenly a dismal weekend turned into a great one. 
    I am not a geek, so I hope this makes some sense.  I also hope Lightroom launches again tomorrow and beyond! 

  • Download correct JRE before launching the jnlp application

    Hi,
    I have this requirement that before launching the jnlp application, the code should check the version of JRE installed on client's system, if it is less than 1.6 u10 then install the latest available JRE before launching the application.
    I am using the Java Script in my jsp to achieve this objective and it is working fine with non-IE web browsers. The trouble starts when the client machine is using 1.6.0_6 jre, in that case IE is not able to download /redirect user to the sun's page for the download of latest JRE.
    My java script code as follows:
    <script language="JavaScript">
    var launch = null;
    // try to check the JRE version installed on client's machine.
    //if its less than 1.6.10 redirect to Sun Micro systems website.
    //and then after installation, launch Receptionst and Call Center application
    function checkForInstalledJreVersionAndLaunch(appName)
         //detect browser used at client's machine
         var windowsIE = (navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Win') != -1);
         if (windowsIE) {
              alert(windowsIE);
             document.write("<OBJECT codeBase=\"http://java.sun.com/update/1.6.0/jinstall-6u10-windows-i586.cab#Version=6,0,10,0\" classid=\"clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284\" height=0 width=0>");
             document.write("<PARAM name=app VALUE=\"http://localhost:8080/"+appName+"/launch.jnlp\">");
              document.write("<PARAM NAME=back VALUE=true>");
              document.write("</OBJECT>");
         }else{
              if (navigator.mimeTypes && navigator.mimeTypes.length)
                   if(!checkWebStartWersion())
                        window.open("http://jdl.sun.com/webapps/getjava/BrowserRedirect?locale=en&host=java.com","needdownload");
                   launch = setInterval('launchJNLP("http://localhost:8080/'+appName+'/launch.jnlp")',100);
    function launchJNLP(app) {
        if (checkWebStartWersion()) {
            clearInterval(launch);
            window.location = app;
    function checkWebStartWersion()
         var isMajorVersion = false;
         var isMinorVersion = false;
         navigator.plugins.refresh(true);
         if(navigator.mimeTypes['application/x-java-jnlp-file'])
              for(var i=0;i <navigator.mimeTypes.length; i++)
                   var pluginType = navigator.mimeTypes.type;
                   if(pluginType.indexOf("x-java-applet;jpi-version") > -1)
                        var jreVersion = pluginType.substring(pluginType.indexOf("_")+1,pluginType.length);
                        var jreUpdateNumber = parseInt(jreVersion);
                        if(jreUpdateNumber >= 10)
                             isMinorVersion = true;
                   if(pluginType.indexOf("x-java-applet;version") > -1)
                        var jreVersion = pluginType.substring(pluginType.indexOf(".")+1,pluginType.length);
                        var jreUpdateNumber = parseInt(jreVersion);
                        if(jreUpdateNumber >=6)
                             isMajorVersion = true;
         return (isMajorVersion && isMinorVersion);
    function launchApplication()
         checkForInstalledJreVersionAndLaunch("appname");
    </script>

    I hear your frustration. I am attempting to do something similar.
    To me, it looks like this ActiveX control has no ability to detect a minor version of JRE. It knows if some JRE 1.6 is installed or not, but not if say JRE 1.6.0_10 or higher is installed. But, if it finds that some JRE less than 1.6 is installed such as a 1.5 version, this ActiveX control can automatically install the latest JRE 1.6.0_12. This seems to work well for me. But, the overall behavior is not consistent. It looks to me that this ActiveX control is only good for making sure that the client has some version of JRE 1.6. It doesn't care which one.
    A similar issue exists if you try to use Java WebStart to automatically download the correct JRE 1.6 version.
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" />As of today, this code will tell Java WebStart that it needs some version of JRE 1.6 or higher to run your app. If the client does not have it, Java WebStart will download and install 1.6.0_07. Apparently, WebStart thinks that version is a "good" one - whatever that means.
    If instead you use this in your .jnlp file:
    <j2se version="1.6.0_10+" href="http://java.sun.com/products/autodl/j2se" />Java WebStart will not run your application unless the client has at least 1.6.0_10 installed. However, it is not able to install this version if the client does not have at least 1.6.0_10 already installed. It isn't smart enough for that. It looks like no one at sun has gotten around to updating http://java.sun.com/products/autodl/j2se to deal with recent JREs.
    Maybe I'm missing something, but WebStart deployment is more difficult than it needs to be. Sun introduces all sorts of new things into minor versions of Java, but nobody seems to be interested in making sure that the end user can have seemless upgrade experience.
    And people wonder why Flash and AJAX have become so popular...
    There probably is another workaround using a Java applet to determine what version is really installed before launching WebStart, but it just seems like an ugly hack to me. If an older version of Java 1.6 is detected, you could direct the user to java.sun.com in a new browser window, just as in the case of Firefox in your code. Ugly, but it would probably work.

  • My MacBook Pro will not open any application or program that requires internet, even though I am connected to the web.

    My MacBook Pro will not open any app or program that requires Internet, even though I am connected to the web. I recently installed Norton AntiVirus and think it may have changed a setting that I couldn't find. I uninstalled Norton and it didn't help. Every time I open Safari, iTunes or any other program that tries to connect to the Internet, it crashes. Strangely enough, Skype still works, but nothing else.
    I have OSx 10.6.8.
    I have tried erasing plists, and all the standard troubleshooting, ie resetting modem, restarting computer, reloading Safari from disk.
    Any help would be greatly appreciated. Thank you in advance.

    Change your router channel.  Sometimes this is all you will have to do.
    Power cycling the router.  Read the router's user manual or contact their tech support for instructions.
    System Preferences/Internet & Network/Network
    Unlock the padlock
    Locations:  Automatic
    Highlight Airport
    Click the Assist Me button
    In the popup window click the Diagnostic button.
    System Preferences/Network- Unlock padlock.  Highlight Airport.  Network Name-select your name.  Click on the Advanced button.  Airport/Preferred Networks-delete all that is not your network.
    Place a check mark next to "Remember networks this computer has joined."  Click the OK button and lock the padlock.  Restart your computer.
    http://support.apple.com/kb/TS1920 Mac OS: How to release and renew a DHCP lease
    No internet connection (wireless)
    Check to see if an extra entry is present in the DNS Tab for your wireless connection (System Preferences/Network/Airport/Advanced/DNS).
    Delete all extra entries that you find.
    Place a check mark next to "Remember networks this computer has joined."
    Other resources to check into:
    Troubleshooting Wi-Fi issues in OS X Lion and Mac OS X v10.6
    Netspot
    How to diagnose and resolve Wi-Fi slow-downs
    Pv6 troubleshooting
    Mac OS X 10.6 Help:  Solving problems with connecting to the Internet
    What Affects Wireless Internet?
    Solutions for connecting to the Internet, setting up a small network, and troubleshooting
    I uninstalled Norton and it didn't help.
    To properly uninstall Norton software follow these instructions - Locate Symantic Solutions folder inside the Applications folder at the root level of your HD, launch the Symantec Uninstaller application, select the Symantec AntiVirus Corporate, Norton AntiVirus & Norton AntiVirus Auto-Protect entries and click the Uninstall button. 
    Confirm your decision when prompted and then enter your administrator password in the space provided.
    Retart your computer & Norton should be gone for good.
    If the above does not work, download a copy of Symantec’s RemoveSymantecMacFiles removal utility.  This utility will launch Terminal & remove the Norton components.

Maybe you are looking for

  • Adobe Acrobat Download Issues

    I have Adobe Acrobat version 10.1.13 on a faulty computer and wish to download this version onto a new computer.  I run Windows 7 and 32 bit. I have serial numbers and ID but can get link to downlaod

  • Installed Adobe CS 3. InDesign will not start : why unexpected quit

    This post follows up with a recent post on a powerpc g4 with I/O error. Thought had gotten it resolved with a new hd cable and another hard drive. Installed OS 10.4 and other programs that were on my other hd. All program start ok other than InDesign

  • View Selector

    Hi Friends, I've a report which is having column selector,in column selector i'm using 2 columns. Market and Product. When i select Market /Product column selector will display with 5 columns in my report. But when i want to select product from colum

  • Runn time error "CNTL_ERROR" for batch job created for program RBDAPP01

    We have encounter run time error and the batch job for program RBDAPP01 was terminated. Information on where terminated     Termination occurred in the ABAP program "CL_GUI_CUSTOM_CONTAINER=======CP" -      in "CONSTRUCTOR".     The main program was

  • Preview not saving when converting multiple .eps files to .pdf

    Hi, I have a macbook pro with snow leopard. I open a group of .eps image files using preview into the same window. I then shut the window with "cmd w". It says do you want to save all. I click save all. But then no saves are made. If i open the group