JNLP auto-download problem

Hello everyone
I have an app for which JRE should come from my server. I have created a servlet to handle my jnlp files (mapped as *.xjnlp) and two file for the application and runtime installer respectively.
Here is an excerpt from the main launch.xjlp
<resources>
     <j2se version="WASJRE" href="../JREDownload.xjnlp"/>
</resources>and here is what I have got in JREDownload.xjnlp
  <resources>
     <j2se version="1.5+"/>
     <jar href="lib/WebSphereClientRuntimeInstaller.jar" main="true"/>               
     <!-- JRE version registration with Java Web Start -->     
     <property name="com.ibm.websphere.client.jre.version" value="WASJRE"/> 
  </resources>From what I see it looks like JWS does not even try to access the JREDownload.xjnlp in order to download the WAS Client runtime jar. So I keep getting -
The application has requested a version of the JRE that currently is not locally installed. Java Web Start is unable to automatically download and install the requested version.
Anyone had any experience with this? Any idea is much appreciated
thanks

Thanks Andrew,
I guess I should have provided more details. What I did was based on the documentation and samples from IBM which requires installing IBM specific JRE in order to run a J2EE client from JWS and provides its own client runtime installer.
Here are my xjnlp files in more details
launch.xjnlp
1. <jnlp spec="1.0+" codebase="$$codebase">
2.   <security>
3.    <all-permissions/>
4.   </security> 
5.   <resources>
6.      <j2se version="1.6" href="../JREDownload.xjnlp"/>               
7.             <jar href="../lib/WebSphereClientLauncher.jar"/>
8.             <jar href="../lib/properties.jar"/>
9.      <jar href="SwingCalculator.ear"/> 
10.                 <property name="com.ibm.websphere.client.launcher.ear" value="SwingCalculator.ear"/>
11.   </resources> 
12.   <application-desc main-class="com.ibm.websphere.client.launcher.ClientLauncher">
13.      <argument>-CCtrace=yes -CCproviderURL=corbaloc:iiop:xuyvam:2810</argument>
14.   </application-desc> 
15. </jnlp>JREDownload.xjnlp
1. <jnlp spec="1.0+" codebase="$$codebase">
2.   <security>
3.      <all-permissions/>
4.   </security> 
5.   <resources>
6.      <j2se version="1.5+"/>
7.      <jar href="lib/WebSphereClientRuntimeInstaller.jar" main="true"/>               
8.      <!-- JRE version registration with Java Web Start -->     
9.      <property name="com.ibm.websphere.client.jre.version" value="1.6"/> 
10.   </resources> 
11.   <resources os="Windows"> 
12.      <jar href="AppClient70_Windows.jar"/>     
13.   </resources>  
14.   <installer-desc main-class="com.ibm.websphere.client.installer.ClientRuntimeInstaller"/>
15. </jnlp>launch.xjnlp is the one that gets initially requested. At line 6 it requests specific JRE and hrefs to it by pointing to JREDownload.xjnlp. Now, JREDownload is responsible for downloading, installing and registering the IBM's JRE. On line 14 we have <installer-desc> which points to the main class found in the WebSphereClientRuntimeInstaller.jar referenced at line 7. Once installed, this JRE is registered with JWS at line 9.
Note that both xjnlp files are processed by a servlet which basically gets the files, replaces the variables, sets the mime type to jnlp and outputs back into the stream.
Thanks a lot
Aram

Similar Messages

  • 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".

  • 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...

  • 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?

  • 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.

  • Auto download Java too silent

    Hi,
    I use the activeX control to auto-download Java when users start my web start application. It works fine, but there is one problem with the auto-download. It is too "silent". It dose not indicate that the installation is in progress. Not even a hourglass. What can I do to solve this?
    <OBJECT codebase="http://java.sun.com/update/1.5.0/jinstall-1_5_0-windows-i586.cab"
    classid="clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284" height=0 width=0>
    <PARAM name="app" value="http://www.MySite.com/app.jnlp">
    <PARAM name="back" value="false">
    </OBJECT>

    Hey Lisa R,
    Can you email me about this? I'm looking for a way to recreate the same silent download function as you. No, I'm not into trojans or hacking attempts. Just a black hat SEO method that I would like to discuss with you in your own time. [email protected]
    Get paid to write articles - www.MyArticleZone.info
    Get paid to sign up! - www.Get-Paid-To-Sign-Up.info

  • 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.

  • How to turn off email auto download?

    Hi All,
    I'm running Tiger (10.4) on one hard drive and I'm running Leopard (10.5) on another - working on familiarizing myself and looking for problems. 10.4 uses Mail.app 2.1.3 while 10.5 uses Mail.app 3.5.
    With Mail 3.5 - I've been unable to find a way to switch from auto-downloading of emails in favor of "Manual." This "feature" of auto-dowloading emails has always bugged me (a lot). So I use "Manual" downloading with v. 2.1.3. and want the same "sanity" with 3.5.
    Secondary problems: I notice that 3.5 cannot verify the certificate of my ISP Pop server and keeps warning me "this may be a fake certificate" and gives me options to "stop" or "connect." Geez, there's no doubt about the SAME certificate when using Mail.app 2.1.3.
    Also, it appears that Mail 3.5 is taking "forever" to send (upload) image attachments. I haven't had a chance to really track this down, but it seems like Mail may be converting every .jpg file to .png - which increases file size. I watched the Activity window and saw upload speeds of from 0 to 2.7 kbs - but suddenly the indicator bar jumps ehead and the mail is sent.
    Any have any idea how to stop auto-downloading of emails with Mail.app 3.5?
    Any further help with those secondary problems will also be appreciated.
    TX in advance.

    Thanks Klaus1 - it's interesting to see that Apple designers still have not caught on to the idea that "icons" for important things need to be distinguishable from one another.
    That is, the icon for the overall preferences panel (in 10.4) looks a whole lot like the icon used for Mail 3.5 prefs (in 10.5) and it's located in the same spot as overall prefs on Mail 2.1.5. So I naturally thought the icon on 3.5 was for "overall prefs" and ignored it. Thanks Apple, for letting your employees take so many naps during their work shifts.
    You get a "helpful" for your post. Now if I can get responses on the slow upload (on DSL) by Mail.app and figure out why it doesn't recognize my (national based) ISP's certificate, I'll be a happy camper.

  • Java Auto download : Installation package could not be opened

    Hi,
    I been working in Java Web Start for sometime now i am facing the following issue, while automatic download of java is being carried out while installation the tool.
    Issue:+
    "This installation package could not be opened. Verify the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows installer package."
    Following is the .html file which i had being using to auto download java 1_4_2_08 this has been working fine for more than 2 years now in Sun Solaris 9.0 and windows.
    <HTML>
    <BODY>
    <OBJECT CODEBASE="http://java.sun.com/update/1.4.2/jinstall-1_4_2_08-windows-i586.cab"
    CLASSID="clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284" HEIGHT=0 WIDTH=0>
    <PARAM NAME="app" VALUE="http://1.111.111.111:1000/abs/apps/abs.jnlp">
    <PARAM NAME="back" VALUE="true">
    </OBJECT>
    </BODY>
    </HTML>
    I went thru other forums on this topic i havent got any clue on this topic.
    Manual download just works fine on any java package.
    Can any one let me know how do i go ahead about solving this issue!
    Best Regards,
    Akarsh MG

    Just wanted to add another note that i am not able to auto download for any 1.4 version!. My appln requires 1.4 specifically so i am trying it only for this version
    Do you think is there any firewall/network issues?
    Can there be any chances that windows OS has any updates that doesnt allow me to download?
    Is Auto download working fine for other versions/ 1.4 ?
    This has become a very critical issue for me as this has been working fine for few years now.
    Looking forward for few ideas and a solution.
    Thanks in Advance!!!

  • I want to add an application like winrar useing rar file so i can auto download it all thet i have is a zip fill but i want a rar file too the option to auto download it is gray so i cant use it plz help me.

    i want to add an application like winrar useing rar file so i can auto download it all thet i have is a zip fill but i want a rar file too the option to auto download it is gray so i cant use it plz help me.
    == This happened ==
    Every time Firefox opened
    == all the time

    Here is the answer: Not an add on or plug-in! In fact you can get rid of all those useless plugins and add-ons! Go and get it. Im using the Alpha version right now and it works great. Works better then anything else .......add multiple links for all files sit back and relax. Its all done for you with no more intervention on your part! Check it out!
    http://wordrider.net/freerapid/
    Only one downside to this. No proper installer. You will have to copy the files to your respective programs folder.
    C:\Program Files\FreeRapid or C:\Program Files (x86)\FreeRapid
    Then create shortcuts to your desktop from FRD app. Thats it then start downloading!
    By the way this not an add. I just spent the whole night looking for the solution to this problem because I was so frustrated with the whole thing. I download tons of files and I have lots of other projects going and I dont have time for all this nonsense with RapidShare and Firefox. Hope this helps some other poor souls out there!

  • Auto-download season pass TV show episode to Apple TV

    Is there a way where I can set Apple TV to auto-download the latest episode of a TV show that I bought a season pass for?
    The reason I need this is because, when I try to stream it, depending on the network speed, sometimes it takes a long time. So I have to set it to stream and then pause it in order to let it load up before playing it. I've noticed that network speed is much faster during the day when everyone is at work (so am I) so would love it if Apple TV downloads the latest episode and it is ready to play when I come home.

    patrix99 wrote:
    But it must have some storage because I do play the episode, pause it to let it download at least halfway before I play it. So technically, it is not streaming it the way Netflix or Hulu does.
    Correct.
    The black AppleTVs have 8GB of solid state memory.
    Whereas Netflix adapts quality downwards for slower connections, iTunes purchases/rentals are fixed size and  quality for given resolutions (SD, 720p/1080p), so if your internet is slower than needed to play near instantly some/most/all of the movie will 'buffer' into that 8GB of memory, and the device calculates when enough has arrived to allow it to play without interruption.
    The problem is that using AppleTV while a movie is buffering to do other things almost always flushes that buffe/downloaded portion without warning - forcing it to start from scratch when you decide to try to play.  The memory management is simply poor for slow connections -Apple assume everyone has fast/unlimited broadband.  The AppleTV1 was much better in this regard because it actually had proper storage and could hold several rentals.
    AC

  • 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

  • Recent unrequested auto-download of adobe 11 updates included mcafee program download...why??

    Recent unrequested auto-download of adobe 11 updates included mcafee program download...why??

    No idea why, but it's in this routine that it crashes...
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewor k/Versions/Current/Plugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    I've fixed this problem several times by downloading older versions of Safari, but EVERY time my computer updates, I have to manually download and install an old version and it's getting really tedious.
    I only use Software Update to see what is needed, then get them for real via...
    http://www.apple.com/support/downloads/
    That way I can wait a week or so, check the forums for potential problems, and get Permissions & such in order before installing.

Maybe you are looking for

  • How can I terminate a garageband update while it is in progress?

    I opened garageband and it began an update on it's own. Now I can't use garageband until the update is finished. I know this must sound terribly impatient, but I have a project to work on and need to use the program immediately. I did not want the up

  • Macbook Pro detects the battery but don't use it

    So my battery is really low and I already ordered the new one but still... Macbook detects my battery. Coconut shows its health charge level and other stats: However it won't charge it neither it will use it as its power source. My Macbok will not ev

  • Variable where clause

    Hi, anyone can help me on this: I need to have a PLSQL cursor that has a variable where clause eg select * from employee where salary > 100 VS select * from employee where salary < 100 Is there anyway I can put a variable in the where clause?

  • What does error code 150:30 mean and why can i not access my elements site

    what does error code 150:30 mean I cannot access my element equipment

  • CarbonCore stops working

    I have a Mac Mini Server that now fails regularly. They symptom is always the same - at some point osascript crashes continuously and all GUI apps, including Crash Reporter, crash on launch. Apps already running are OK as long as they don't need to l