1.4.2 JRE auto-download signature problem

Hi,
When I try to use the 1.4.2 cab file for auto-download, I find that there is a certificate signature problem when it installs. It comes up with a message:
"Warning: The authenticity of this content cannot be verified, therefore it cannot be trusted.
Problem listed below:
Content does not match the signature."
I'm not sure that it happens every time, but at least half of the time.
This is a problem because we will supply this cab file with our product, so that the customer has an option to install it. However, it will look like we're supplying something unsecured.
Here's the location of the cab file in question:
OBJECT CODEBASE="http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab"
Anyone else experienced this? Is this a bug?
Thanks,
Mike.

This seems to the same problem as in bug 4908234, which currently has status "In progress, bug".

Similar Messages

  • Can the JRE auto download support in Vista using Java 5?

    Hi,
    I am investigating the JRE auto download and upgrade in intranet on Vista. But it seems the JRE auto download is disabled in Java 6.
    http://pscode.org/jws/upgrade.html
    Is it possible I achieve this in Java 5?
    Thanks a lot!

    a sample of the jreinstaller is provided in the samples directory go the 1.5 JDK.
    /Dietz

  • JRE auto download version

    Hi,
    I�m involved with supporting an application that uses applets. If a user opens a browser (IE 6.0) and starts the applet, the JRE download and install process automatically starts, if the client machine doesn�t have a JRE installed.
    The problem is that it always downloads JRE 1.4.2_03, but we want it to download JRE 1.4.2._10 or 1.4.2._11. Is this a configuration parameter within the browser, or is it down to the applet itself? The applet is served up by an application running on IIS, but I think this more of a client side issue, right?
    Any help would be appreciated.
    Thanks,
    Dave.

    You can use the htmlconverter to convert applet tags to object tags.
    Since IE is already downloading the jre I guess you are using an object tag.
    For IE this object tag has a clsID and a codebase, codebase is the
    location of the cab file (activex control) IE needs to download and install
    if the clsid is missing from it's installed activex controls.
    If you use the htmlconverter to convert an applet tag in a html page there
    are options you can choose for browser and java version.
    http://www.google.com/search?complete=1&hl=en&q=site%3Asun.com+applet+versioning&btnG=Google+Search
    will get you here:
    http://java.sun.com/products/plugin/versions.html

  • JRE Auto Download

    I am trying to ensure the customer has the JRE 1.3.1_08 version. My .jnop file contains the following line:
    <j2se href="http://java.sun.com/products/autodl/j2se" version="1.3.1_08" initial-heap-size="64m" max-heap-size="128m"/>
    I am getting an error during the jre install process:
    An error occurred while launching/running the application.
    Title: J2RE 1.3.1_08 Installer (US)
    Vendor: Sun Microsystems, Inc.
    Category: Security Error
    Unsigned application requesting unrestricted access to system
    Can anyone help?

    Do you also have a secion in your jnlp file that says
    <security>
    <all-permissions/>
    </security>
    If so that is your problem. Applications launched with Java Web Start are -- by default -- run in a restricted environment where they have limited access to local computing resources, such as storage devices and the local network. In this sandbox environment, Java Web Start can guarantee that a downloaded and potentially untrusted application cannot compromise the security of the local files or the network. So depending on what your app does you may need all-permissions but if you don't you should be able to remove that section and you will get past that error. If your app needs system resources you may be able to rewrite parts of it using classes from the javax.jnlp package to access local resources (if you do this you will not need all-permissions) or you can sign your jar files. Take a look at the delevopers guide http://java.sun.com/products/javawebstart/1.2/docs/developersguide.html it talks about the restriced environment and how to sign your jar files.

  • JavaWebStart JRE 1.4.2 auto-download installer sample

    Environment: WinXP - Pro SvcPack2, jdk1.5.0_08
    I am a JAVA newbie attempting to learn more. In trying to learn more about the JRE auto-download installer, I tried to build the sample installer using the README found in the jdk1.5.0_08\sample\jnlp\jreinstaller directory as a guide -- without success.
    I went the GNU website and got a copy of "gnumake". I then went to the jreinstaller\build\win32\jreinstallers directory and ran 'gnumake'. I got the following error;
    process_begin: CreateProcess(NULL, uname, ...) failed.
    process_begin: CreateProcess(NULL, uname, ...) failed.
    process_begin: CreateProcess(NULL, uname, ...) failed.
    for i in j2re1_4_2/GNUmakefile ; do \
    echo ">>>Recursively making "$i" "all"..."; \
    C:/Program Files/Java/jdk1.5.0_08/sample/jnlp/jreinstaller/build/win
    32/gnumake -f $i bundle || exit 1; \
    echo "<<<Finished Recursively making "$i" "all"." ; \
    done
    i was unexpected at this time.
    gnumake: *** [all] Error 255
    I "assume" the problem I am having is a "setup" issue. Can anyone help point me in the right direction to compile this.
    Thank you!!!

    Well, I got over one hurdle by using a SUN document that describes setting up the environment for building a JDK under Windows.
    I am using the Cygwin command binaries for compilation.
    Now when I try to build the sample, I get the following error;
    C:\Program Files\Java\jdk1.5.0_08\sample\jnlp\jreinstaller\build\win32\jreinstallers>C:\cygwin\bin\make all
    for i in j2re1_4_2/GNUmakefile ; do \
    echo ">>>Recursively making "$i" "all"..."; \
    /usr/bin/make -f $i bundle || exit 1; \
    echo "<<<Finished Recursively making "$i" "all"." ; \
    done
    Recursively making j2re1_4_2/GNUmakefile all...make[1]: Entering directory `/cygdrive/c/Program Files/Java/jdk1.5.0_08/sample/jnlp/jreinstaller/build/win32/jreinstallers'
    cl /IC:/Program Files/Java/jdk1.5.0_08//include /IC:/Program Files/Java/jdk1.5.0_08//include/win32 -c -o bin -Fobin/WindowsInstaller.o ../../../src/win32/jreinstallers/WindowsInstaller.c
    make[1]: *** [bin/WindowsInstaller.o] Error 53
    make[1]: Leaving directory `/cygdrive/c/Program Files/Java/jdk1.5.0_08/sample/jnlp/jreinstaller/build/win32/jreinstallers'
    make: *** [all] Error 1
    Any idea what the 'Error 53' means?

  • I downloaded the latest version and I get this error when I open it. Problem signature:   Problem Event Name:     InPageError   Error Status Code:     c0000185   Faulting Media Type:     00000003   OS Version:     6.1.7601.2.1.0.768.3. Any clue why or how

    I downloaded the latest version and I get this error when I open it. Problem signature:   Problem Event Name:
    InPageError   Error Status Code:
    c0000185   Faulting Media Type:
    00000003   OS Version:
    6.1.7601.2.1.0.768.3. Any clue why or how to fix?

    InPageError
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get itunes to launch properly afterwards?

  • JRE 1.4.1 auto-download URL?

    If it is available, what is the "codebase" URL for the auto-download of JRE 1.4.1 for use in the <object> tag?
    Thanks all,
    Mark

    I found it:
    http://java.sun.com/products/plugin/autodl/jinstall-1_4_1-windows-i586.cab#Version=1,4,1,0

  • Auto Download JRE from Intranet using JWS

    I'm pretty new to JWS, I want to download a specfic JRE version from my Intranet or from a directory on the Unix server (webserver). I have downloaded 1.4.2_11 from Sun web site to http://webserver01.intra.xyzabc.com:8000/sample. What step I must do to autoload when the user does not have any JRE installed on desktop
    please help me.
    Thanks
    Baski
    Sample.jnlp:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for Sample Program -->
    <jnlp
    spec="1.0+"
    codebase="http://webserver01.intra.xyzabc.com:8000/sample"
    href="Hello.jnlp">
    <information>
    <title>Java Web Start, Sample Program</title>
    <vendor>Java Web Start Home Page</vendor>
    <!--homepage href="docs/help.html"/ -->
    <description>This is a Sample Program</description>
    <offline-allowed/>
    </information>
    <resources>
    <jar href="Sample.jar"/>
    <j2se version="1.4.2_11" href="http://webserver01.intra.xyzabc.com:8000/sample"/>
    </resources>
    <application-desc main-class="Sample"/>
    </jnlp>

    Note that only certain version are available for
    auto-download, and the published list may be
    out-of-date (it was the last time I checked.)
    (grumble) I'd have thought Sun might be able to get
    the technology together to generate the list of available
    versions actively (e.g. using JSP/servlets).
    There was recently a question why no version
    NN available?, my reply linked to the list of
    available versions and asked Do you see
    your requested version, listed here?
    I probably led the questioner entirely astray.

  • Auto download JRE

    Hello,
    One of the described features of webstart is the auto-download of the specified JRE (if not yet installed)
    I want to place the JRE on my local server to prevent downloads from the Sun site when the JRE is not yet installed on the client PC.
    How can I do this ?
    Thanks for the info,
    Piet

    As I said in previous response, the complete jre installer source is included in the JDK/samples directory.
    You cannot use the standard tag: href="http://java.sun.com/products/autodl/j2se" alone, because this directs java web start where to download the jre from.
    if you wan to accept either a jre downloaded from sun, or one loaded from your company server, but want only to force autodownload only from your companies server you would need to list multiple j2se elements:
    <j2se version="1.4.2*" href="http://yourcompany.com/products/autodl/j2se">
    <j2se version="1.4.2*" href="http://java.sun.com/products/autodl/j2se">
    then if either are there it will use it, otherwise it will try to download from the first one.
    It sounds more like most people want a local client configuration, that says where to download jre from when the standard href (href="http://java.sun.com/products/autodl/j2se") is given.
    there is the config entry: deployment.javaws.installURL , but that won't do what you want. (that will cause platform version specifications (those w/o href) to download from it's value, but it will also set that value in the location field of jre's discovered on the system (as on windows thru the registry), which will cause a non-match on jnlp files specifying sun product version (ie: with href="http://java.sun.com/products/autodl/j2se")
    What we really need is a configuration parameter that means "alternative download url" so that anyone requesting either a product version, or a platform version with the href equal to the value of the property deployment.javaws.installURL, will go to the alternative url to attempt the download.
    I'll file such an RFE for the next version.
    /Dietz

  • Multi-language JRE via auto-download?

    It seems that the JRE installed via the auto-download cab file for Windows is not the multi-language version. If I install the JRE by hand and then launch my Web Start application, I have no issues accessing other encodings like JIS_X0201. However, if I use the auto-download feature described in the Java Web Start tutorial (using http://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab#Version=6,0,0,0...) I get an English-only version and end up with UnsupportedCharsetExceptions when I access other encodings.
    So, in short: Is there a way to get the multi-language JRE via auto-download?
    Thanks!

    Thats the GUI I am talking about
    Confirmation Needed - Print
    Print Request
    Applet would like to print . Do you want to proceed?
    Don't show this dialog box again?
    Yes No
    I want this to be in Portuguese, my native language.
    I changed the code like this:
    import java.util.Locale;
    import java.util.ResourceBundle;
    private String language = "br";
    private String country = "BR";
    Locale currentLocale;
    ResourceBundle messages;
    currentLocale = new Locale(language, country);
    messages =ResourceBundle.getBundle("MessagesBundle",currentLocale);
    ( I included )
    ( I algo created those files )
    MessageBundle.properties
    Dialog = Confirmation Needed - Print
    Title = Print Request
    Text = Applet would like to print. Do you want to proceed?
    Warn = Don't show this dialog again
    MessageBundle_br_BR.properties
    Dialog = Confirma��o Requisitada - Impress�o
    Title = Requisi��o de Impress�o
    Text = O Applet deseja imprimir. Deseja prosseguir?
    Warn = N�o mostre esta caixa de di�logo novamente.
    Everything according to tutorial.
    But I did not understand how this change a dialog that came from the JRE!!
    Angel Portal

  • Java web start unable to auto download java 1.6.0_14

    Hi,
    My application runs on java 1.6.0_14 and i want clients to use either 1.6.0_14 or higher while running the application. In the JNLP file i have mentioned j2se version as 1.6.0_14+
    If the client machine has a java version lesser than 1.6.0_14, Java web start is not automatically downloading the given version from sun auto download site.
    Isn' t this version supported by Sun for auto download? If yes, how to get around this problem?

    Thanks..
    We do have a web page from which we access the jnlp and that web page has javascript to force download of a specific version of JRE. Once it downloads the application on client machine, it creates an icon on the desktop.
    If the application and jnlp is changed on the server, we want clients to go through the icon on desktop and still get the version of jre mentioned in the updated jnlp rather than having them go through the web page again do download the new JRE required...

  • Auto download 1.6.0_10

    we have run into a problem that is resolved in 1.6.0_10. We would like to make the install occur from our jnlp.
    Ex:
    <j2se version="1.6.0_10"
    It doesnt appear to be available yet from the auto download. Can someone update the servlet to make the download available? Any estimate of when would be greatly appreciated.

    I'm running up against the same thing.
    bug # 6669818 - http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6669818
    That's causing our web start app to die when trying to connect. It works fine with 1.6.0_10, but not with any release prior to that because we need 1.6.0_05 or later for some sealed libraries that we are using.
    Any news on when 1.6.0_10 will be available through the auto-download system would be appreciated.
    I noticed that someone from Sun mentioned in these forums that a JRE is usually available from the auto-download URL within a couple of weeks of its release - http://forums.sun.com/thread.jspa?threadID=704112&messageID=4082098
    What was the release date for 1.6.0_10 anyway? I see an article from April this year introducing it (http://java.sun.com/developer/technicalArticles/javase/java6u10/), but no word on when exactly it was officially released.

  • Premiere Pro: Problem signature:  Problem Event Name : APPCRASH

    good day , I have this problem
    Problem signature:   Problem Event Name : APPCRASH   Application Name : Adobe Premiere Pro.exe   Application Version : 8.1.0.81   Stamp Date / Time of Application : 5426694c   Fault Module Name : devenum.dll   Fault Module Version : 6.6.7600.16385   Stamp Date / Time Fault Module : 4a5bded7   Exception Code : c0000005   Exception Offset : 00000000000016a0   OS Version : 6.1.7601.2.1.0.256.48   Location ID : 1046   Additional Information 1 : 5ccc   Additional Information 2 : 5cccf27e044b0256c4ea5fa7222c3892   Additional Information 3 : D028   Additional Information 4 : d028f629c279c9658ea3ed1061ca17f0  Read our privacy statement online :   http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0416  If the online privacy statement is not available, please read our privacy statement offline :   C : \ Windows \ system32 \ en-US \ erofflps.txt

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    •What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    •What is your exact graphics adapter driver version?
    •Have you gone to the vendor web site to check for a newer driver?
    •For Windows, do NOT rely on Windows Update to have current driver information
    •-you need to go direct to the vendor web site and check updates for yourself
    •ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    •nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us
    Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    https://forums.adobe.com/thread/1070933 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • Do I need to manually back up my iphone photos if I have auto downloads already set up in iphoto?

    I'm a relatively new iPhone user. I don't take a ton of photos, but the ones I take are important to me. I've been trying to make sure that photos I take with my phone are backed up and in iPhoto. I have a few questions regarding how it all works.
    1) If I take a picture with my iPhone it goes to both my camera roll and my photostream (yes, photostream is on)... is this correct?
    2) My photostream is limited to 1000 photos. These photos exist on the cloud aren't necessarily saved to my computer... is this correct?
    3) I have automatic downloading set up via iPhoto on my MacBook Pro. When I do this ALL photos I take are downloaded by my computer as long as I've connected it to the internet at some point recently... is this corret? If they are downloaded, are they downloaded from my photostream, or are they downloaded as they come in?
    4) If I go over 1000 photos in a month in my photostream, does it save ALL of them to iPhoto or just the 1000 most current? In other words, in iPhoto I see a section labeled, for example, "May 2013 Photostream". If I took 1500 photos during that May timeframe, would they ALL be there or would only the 1000 that constituted my photostream at the time of download be in there?
    5) If a photo is show in iPhoto it is permenantly downloaded to my computer's harddrive... is this correct?
    6) This is the biggest one. If I have auto downloads set up between my iPhone and iPhoto, is there any reason to download photos manually? Everytime I download photos manually it says I have a bunch of duplicates. They all seem to be duplicated in my photo stream, BUT others are not duplicated and seem to download at the time of the manual operation, which makes me think that they autodownloads aren't downloading everything.
    7) Do photos I edit in Snapseed or Instagram get downloaded automatically or do I have to put them somewhere for that to happen?
    Sorry for the barrage of questions. This stuff is super confusing if you've never used it before. I just want to be sure I haven't lost anything and don't delete anything.

    Good questions!
    SInce you are having Photo Stream, you may want to backup your iPhone to iCLoud. to be on the safe side,  see:  iCloud: Backup and restore overview
    1) If I take a picture with my iPhone it goes to both my camera roll and my photostream (yes, photostream is on)... is this correct?
    Yes, photos you take with the iPhone will be stored in the camera roll, and the camera roll will be automatically added to iCLoud and synced to your devices.
    2) My photostream is limited to 1000 photos. These photos exist on the cloud aren't necessarily saved to my computer... is this correct?
    My photo stream is limited to max 1000 photos and only the last month of photos.
    If you enable automatic import on your mac, these photos will be stored on your mac automatically in monthly events in iPhoto. Or you can import manually, what you are seeing in the My Photo Stream album.
    See:  iCloud: Photo Stream FAQ
    3) I have automatic downloading set up via iPhoto on my MacBook Pro. When I do this ALL photos I take are downloaded by my computer as long as I've connected it to the internet at some point recently... is this corret? If they are downloaded, are they downloaded from my photostream, or are they downloaded as they come in?
    All photos currently in iCloud will be visible in the Photo Stream, when it is enabled on your mac, and with automatic import they will be added to the monthly events, as soon as the mac syncs with iCloud.
    4) If I go over 1000 photos in a month in my photostream, does it save ALL of them to iPhoto or just the 1000 most current?
    When you reach 1000 photos in My Photo Stream, the oldest photos will automatically deleted, so you should sync your phone before that happens.
    iCloud: Photo Stream limits
    In other words, in iPhoto I see a section labeled, for example, "May 2013 Photostream". If I took 1500 photos during that May timeframe, would they ALL be there or would only the 1000 that constituted my photostream at the time of download be in there?
    You can sync more than a 1000 photos per month, only make sure, you sync often.
    5) If a photo is show in iPhoto it is permenantly downloaded to my computer's harddrive... is this correct?
    It is downloaded permanently, as soon as you are seeing it in an event in iPhoto, not if it is only showing in the "My Photo Stream" album.
    6) This is the biggest one. If I have auto downloads set up between my iPhone and iPhoto, is there any reason to download photos manually? Everytime I download photos manually it says I have a bunch of duplicates. They all seem to be duplicated in my photo stream, BUT others are not duplicated and seem to download at the time of the manual operation, which makes me think that they autodownloads aren't downloading everything.
    One good reason to download manually would be the download speed. It is just quicker, and you are not risking transmission errors. Also, you may have more photos in your camera roll than in the photo stream, because you could have deleted photos from the photo stream. The duplicates should be no problem, if you exclude them from importing.
    7) Do photos I edit in Snapseed or Instagram get downloaded automatically or do I have to put them somewhere for that to happen?
    I do not use these apps, so I cannot be sure, but usually you will have to save edited photos back to the camera roll, to be able to sync them, either with Photo Stream or by manual sync.
    Regards
    Léonie

  • GPO is set for "Auto download and notify for install" but it does not work correctly on two of my servers.

    Hello,
    I have a problem with two of my servers. I have ~200 servers which are updating fine through WSUS. The settings are as you can see "3 - Auto download and notify for install" in the GPO.
    This is the correct setting. I want to achieve that I can install the updates whenever I want on these servers. On client computers there is a strict schedule with auto installs.
    My GPO works fine for 98% of my servers. On two servers (a big file server and a TMG server) the settings are made as you can see in the screenshots, but the updates still get installed automatically.
    I have no idea what I'm doing wrong here... It is a big problem for me that updates get installed automatically on these servers.
    Although the Policy and the Registry both say 3 the server behaves like option 4 is active.
    I would be very thankful for any input on how to find out what's the issue here.

    and was not able to find any sign of an admin installing it in the WindowsUpdate.log.
    Then the Windows Update Agent DID NOT install this update, and it's not really a WSUS issue.
    My typical response to such a claim would be to ask you to show me in the WindowsUpdate.log where the update was installed... but it seems that request has already been answered.
    The more relevant question it seems, is HOW DID these updates allegedly get installed?
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

Maybe you are looking for