JNLP API: Programmatically checking for updates to JNLP file

I have a webstart application, and I'd like to add a function to check for updates while the program itself is running. DownloadService2.getUpdateAvailableResources checks for updates in the JAR file, but not the JNLP file that launched the application. If I deploy new versions of the JAR files I get prompted, but if I add a new JAR file to the JNLP file I don't.
Is there any way to check for updates to the JNLP file?
Also, is there a way to programmatically trigger a background update, so that when the app is next launched it's updated?

rcasha wrote:
I have a webstart application, and I'd like to add a function to check for updates while the program itself is running. DownloadService2.getUpdateAvailableResources checks for updates in the JAR file, but not the JNLP file that launched the application. If I deploy new versions of the JAR files I get prompted, but if I add a new JAR file to the JNLP file I don't.
I assume you passed in a resource spec with type == ALL or APPLICATION ? If so, it sounds like you need to file a bug with details like JRE version, the JNLP desc. involved.
Is there any way to check for updates to the JNLP file?Yes, call getUpdateAvailableResources(spec) with spec.type == APPLICATION. This supposes to work.
Also, is there a way to programmatically trigger a background update, so that when the app is next launched it's updated?Try adding this to your JNLP:
<update check="background" policy="always"/>
For more details, see: http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html#update

Similar Messages

  • ClickOnce Programmatic deployment checks for updates if there is a failure in the middle of an update

    Hi,
    I am using ClickOnce deployment APIs in C#.
    The application is checked not to "Check for updates". Unfortunately, due to some slow internet connectivity issues the deployments sometimes fail.
    When such a scenarios happens, the next time the application is restarted it will prompt the "There was an update" dialog even though the Project ClickOnce settings are set not to check for updates.
    I couldn't find any solutions or documentation. Any help would be appreciated!
    This is my code:
    if (IsUpdated())
    nextProgress = 0;
    logger.Info("Found new version! UPDATING...");
    applicationDeployment.UpdateAsync();
    // We use this instead of applicationDeployment.CheckForUpdate(false) because applicationDeployment.CheckForUpdate(false)
    // Is limited to a few hundred calls only (Microsoft BUG: http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/d9183f7e-f5c7-46d0-8bb4-411ad923976c)
    int checkUpdateError = 0;
    private DateTime _lastCheck = DateTime.MinValue;
    public bool IsUpdated()
    try
    var customVersionUrl = System.Configuration.ConfigurationManager.AppSettings["CustomVersionUrl"];
    var manifestFile = GetIfModifiedtSince(customVersionUrl != null ? customVersionUrl : TBXConfigurationManager.Settings["VersionURL"], _lastCheck);
    if (manifestFile != string.Empty)
    var xdoc = XDocument.Parse(manifestFile);
    XNamespace nsSys = "urn:schemas-microsoft-com:asm.v1";
    var version = new Version(xdoc.Descendants(nsSys + "assemblyIdentity").First().Attribute("version").Value);
    _lastCheck = DateTime.Now.AddMinutes(-10);
    if (version != ApplicationDeployment.CurrentDeployment.CurrentVersion)
    // update application
    return true;
    checkUpdateError = 0;

    Hi uriab,
    As you said that, you have something wrong when you update the Version of application. Due to the network, I'm afraid you have missing something important for the updation version.
    I suggest you uninstall the older version, then reinstall the lastest version from the server.
    And also here is a MSDN article about How to Check for Application Updates Programmatically Using the ClickOnce Deployment API.
    #How to: Check for Application Updates Programmatically Using the ClickOnce Deployment API
    https://msdn.microsoft.com/en-us/library/ms404263.aspx
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I allow offline use AND check for updates if online?

    I am actually not sure if this is a bug or not, as the behavior changed when I updated from 1.6u20 to u21. I have an application in a single JAR, and a JNLP file. I am testing with Windows 7 64-bit (with both the 32- and 64-bit version of the JVM installed, 1.6u20-b06 on both). The application cache is enabled. Here is my JNLP file:
    <?xml version="1.0" encoding="us-ascii"?>
    <jnlp
      spec="6.0+"
      codebase="http://hidden"
      href="Librarian.jnlp">
      <information>
        <title>Librarian</title>
        <vendor>Vendor</vendor>
        <homepage href="http://hidden"/>
        <description>Description.</description>
        <offline-allowed/>
        <shortcut online="false">
          <desktop/>
          <menu submenu="Vendor"/>
        </shortcut>
        <icon href="Librarian.gif"/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se version="1.6+"/>
        <jar href="Librarian.jar" main="true"/>
      </resources>
      <application-desc main-class="com.vendor.apps.librarian.Librarian"/>
    </jnlp>I am observing the following behavior wrt updates and allow-offline:
    When allow-offline is present:
    - JWS does not download updates to the JAR file when the desktop link is clicked.
    - The application can run when I disable the network connection.
    - The "-offline" switch is passed to javaw in the desktop shortcut.
    When allow-offline is not present:
    - JWS does download JAR updates when the desktop link is clicked.
    - The application can not run when I disable the network connection (HostNotFoundException).
    - The "-offline" switch is not passed to javaw in the desktop shortcut.
    What I want to happen is for JWS to check for updates if it can, and if it times out, instead of barfing, just go ahead and run the cached version. What I can get right now is either no updates + offline allowed, or updates + offline disallowed. However, I can obtain the behavior I want if I specify allow-offline then hand-edit the desktop shortcut and remove "-offline":
    When allow-offline is present but I remove "-offline" from the desktop shortcut:
    - JWS does download updates to the JAR file.
    - The application can run when I disable the network connection, after a short timeout.
    Now, I was under the impression that this behavior is the intended behavior of allow-offline: attempt to download update, on error, silently start the cached version instead. This does not seem to be the case. I actually wonder if this is a bug, as with 1.6u20, it seemed to download JAR updates just fine when allow-offline was specified (I had issues when the cache was disabled with 1.6u20, and so I moved to u21).
    How can I make this work the way I want without having to hand edit the desktop shortcut?
    Is this a bug, or am I misconfiguring (OED says this is a real word!) the application?
    Is there something else I have to do to indicate that the JAR is updated besides just uploading a new version to the server?
    It should be noted that I am not doing any web page magic here, I'm testing by simply downloading the JNLP file off the server and opening it. This is actually my first JWS experience and I haven't gotten to properly embedding it in a web page yet. I do not know if this is significant or not.
    Thanks!
    M

    Well, I solved that quick. I've been staring at it for over an hour but it popped out at me as soon as I looked at my JNLP file in my post here (guess it's the red text, heh).
    All I need to do is set online="true" in the shortcut, and also specify allow-offline, and all works exactly as I want it to. :-)
    Perhaps it was a bug in u20 that was causing it to check for updates anyways even with an offline shortcut... I'm not sure, and I don't have it in me to test it any more at the moment.
    Thanks,
    M

  • When will there be fix for AirPrint in Yosemite? I cannot use my HP printer. I have uninstalled/resinstalled everything you can think of. I have deleted and added my printer more time than I can count. I have checked for updates. Nothing has worked.

    When will there be fix for AirPrint? Since upgrading to Yosemite I cannot print from my MacBook Air which I use mostly. (I can print from the my old 2005 G5 desktop and iPad2 just fine on the same network.) I could print just fine when I had Mavericks. I have tried EVERYTHING under the sun: resetting print system, deleting and adding the printer, checking for updates, uninstalling and reinstalling printer software and folders, turning off modem, router etc. NOTHING works.
    The laptop shows that it is printing but nothing happens. Then it says it cannot locate the printer or there is a broken pipe. But it does tell me that I have a low level in one of the ink cartridges (which is true.)
    Help! I have warned everyone I know not to upgrade. Is there a way to go back to Mavericks?
    MacBook Air (mid 2012), OS 10.10,  HP Officejet 7500a

    This is what appeared on Console:
    11/12/14 12:42:32.558 PM com.apple.preference.printfax.remoteservice[3099]: <NSViewServiceMarshal: 0x7fa398514bd0> failed to complete rights grant 6B212CA9-7872-4726-BA05-68BD5C994479 due to 3
    timestamp: 12:42:32.557 Wednesday 12 November 2014
    process/thread/queue: com.apple.preference.printfax.remoteservice (3099) / 0x7fff78cb4300 / com.apple.main-thread
    code: line 834 of /SourceCache/ViewBridge/ViewBridge-99/NSViewServiceMarshal.m in -[NSViewServiceMarshal invalidateWindowRights]
    #exceptions
    11/12/14 12:42:32.598 PM com.apple.xpc.launchd[1]: (com.apple.preference.printfax.remoteservice[3099]) Service exited due to signal: Killed: 9
    11/12/14 12:42:37.845 PM com.apple.appkit.xpc.openAndSavePanelService[3298]: assertion failed: 14A389: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    11/12/14 12:42:37.879 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/CONM 136 - Study Guide Test 3 (2014).docx
    11/12/14 12:42:37.971 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/12%20angry%20men.docx
    11/12/14 12:42:38.033 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/Quiz%20#2.docx
    11/12/14 12:42:39.712 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/12%20angry%20men.docx
    11/12/14 12:42:39.000 PM kernel[0]: Sandbox: Pages(3295) deny file-read-data /Users/Mom/Downloads/Quiz%20#2.docx
    11/12/14 12:42:39.748 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/12%20angry%20men.docx
    11/12/14 12:42:39.850 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/12%20angry%20men.docx
    11/12/14 12:42:39.874 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/Quiz%20#2.docx
    11/12/14 12:42:39.945 PM sandboxd[246]: ([3295]) Pages(3295) deny file-read-data /Users/Mom/Downloads/Quiz%20#2.docx
    11/12/14 12:42:41.000 PM kernel[0]: Sandbox: storeuid(3051) deny mach-lookup com.apple.dock.server
    11/12/14 12:42:48.968 PM WindowServer[132]: WSGetSurfaceInWindow : Invalid surface 702894100 for window 1378
    11/12/14 12:42:48.968 PM WindowServer[132]: WSGetSurfaceInWindow : Invalid surface 702894100 for window 1378
    11/12/14 12:43:17.000 PM kernel[0]: Sandbox: storeuid(3051) deny mach-lookup com.apple.dock.server
    11/12/14 12:43:23.225 PM com.apple.xpc.launchd[1]: (com.apple.quicklook[3316]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    11/12/14 12:43:24.355 PM WindowServer[132]: disable_update_timeout: UI updates were forcibly disabled by application "PrinterProxy" for over 1.00 seconds. Server has re-enabled them.
    11/12/14 12:43:24.946 PM WindowServer[132]: common_reenable_update: UI updates were finally reenabled by application "PrinterProxy" after 1.59 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/12/14 12:43:34.503 PM mdworker[3319]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    11/12/14 12:43:34.514 PM mdworker[3320]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    11/12/14 12:43:34.604 PM mdworker[3318]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    11/12/14 12:44:38.628 PM sandboxd[246]: ([3051]) storeuid(3051) deny mach-lookup com.apple.dock.server
    11/12/14 12:44:41.384 PM locationd[63]: Location icon should now be in state 'Active'
    11/12/14 12:44:44.653 PM sandboxd[246]: ([375]) com.apple.metada(375) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    11/12/14 12:44:44.793 PM sandboxd[246]: ([375]) com.apple.metada(375) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    11/12/14 12:44:45.149 PM sandboxd[246]: ([375]) com.apple.metada(375) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    11/12/14 12:44:56.515 PM Console[3327]: Failed to connect (_consoleX) outlet from (NSApplication) to (ConsoleX): missing setter or instance variable
    11/12/14 12:44:56.641 PM locationd[63]: Location icon should now be in state 'Inactive'
    11/12/14 12:44:56.834 PM sandboxd[246]: ([3051]) storeuid(3051) deny mach-lookup com.apple.dock.server
    Not sure what any of this means.

  • Error 80072EE6 when checking for updates

    Hi, I have a Windows Server 2008 R2 box that shows an error when Checking for updates.
    When I go to Windows update and push "Check for updates" I get a message saying:
    Error(s) found: Code 80072EE6
    I checked that download.windowsuodate.com is reachable
    Any ideas?

    I tried installing MSXML 4.0 SP1 on the machine. But it didn't solve the issue.
    Below you can find the log from today after I checked for update? I did a check for updates at 13:39. Below that I added a few other log lines before that as well.
    2010-04-20 13:39:54:374 932 1304 AU Triggering AU detection through DetectNow API
    2010-04-20 13:39:54:374 932 1304 AU Triggering Online detection (interactive)
    2010-04-20 13:39:54:374 932 9ec AU #############
    2010-04-20 13:39:54:374 932 9ec AU ## START ## AU: Search for updates
    2010-04-20 13:39:54:374 932 9ec AU #########
    2010-04-20 13:39:54:374 932 9ec AU <<## SUBMITTED ## AU: Search for updates [CallId = {859EE30D-0304-4464-AE74-DE01E5B0F36C}]
    2010-04-20 13:39:54:374 932 1320 Agent *************
    2010-04-20 13:39:54:374 932 1320 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-20 13:39:54:374 932 1320 Agent *********
    2010-04-20 13:39:54:374 932 1320 Agent * Online = Yes; Ignore download priority = No
    2010-04-20 13:39:54:374 932 1320 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2010-04-20 13:39:54:374 932 1320 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-04-20 13:39:54:374 932 1320 Agent * Search Scope = {Machine}
    2010-04-20 13:39:54:374 932 1320 Setup Checking for agent SelfUpdate
    2010-04-20 13:39:54:374 932 1320 Setup Client version: Core: 7.3.7600.16385 Aux: 7.3.7600.16385
    2010-04-20 13:39:54:374 932 1320 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-04-20 13:39:54:389 932 1320 Misc Microsoft signed: Yes
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Misc WARNING: DownloadFileInternal failed for AGR-SRV-WSUS/selfupdate/wuident.cab: error 0x80072ee6
    2010-04-20 13:39:54:389 932 1320 Setup WARNING: SelfUpdate check failed to download package information, error = 0x80072EE6
    2010-04-20 13:39:54:389 932 1320 Setup FATAL: SelfUpdate check failed, err = 0x80072EE6
    2010-04-20 13:39:54:389 932 1320 Agent * WARNING: Skipping scan, self-update check returned 0x80072EE6
    2010-04-20 13:39:54:389 932 1320 Agent * WARNING: Exit code = 0x80072EE6
    2010-04-20 13:39:54:389 932 1320 Agent *********
    2010-04-20 13:39:54:389 932 1320 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-20 13:39:54:389 932 1320 Agent *************
    2010-04-20 13:39:54:389 932 1320 Agent WARNING: WU client failed Searching for update with error 0x80072ee6
    2010-04-20 13:39:54:389 932 860 AU >>## RESUMED ## AU: Search for updates [CallId = {859EE30D-0304-4464-AE74-DE01E5B0F36C}]
    2010-04-20 13:39:54:389 932 860 AU # WARNING: Search callback failed, result = 0x80072EE6
    2010-04-20 13:39:54:389 932 860 AU # WARNING: Failed to find updates with error code 80072EE6
    2010-04-20 13:39:54:389 932 860 AU #########
    2010-04-20 13:39:54:389 932 860 AU ## END ## AU: Search for updates [CallId = {859EE30D-0304-4464-AE74-DE01E5B0F36C}]
    2010-04-20 13:39:54:389 932 860 AU #############
    2010-04-20 13:39:54:389 932 860 AU Successfully wrote event for AU health state:0
    2010-04-20 13:39:54:389 932 860 AU AU setting next detection timeout to 2010-04-20 16:39:54
    2010-04-20 13:39:54:389 932 860 AU Successfully wrote event for AU health state:0
    2010-04-20 13:39:54:389 932 860 AU Successfully wrote event for AU health state:0
    2010-04-20 13:39:59:397 932 1320 Report REPORT EVENT: {741C8C46-3179-401C-A2F1-1697349B6F0E} 2010-04-20 13:39:54:389+0200 1 148 101 {D67661EB-2423-451D-BF5D-13199E37DF28} 1 80072ee6 SelfUpdate Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee6.
    2010-04-20 13:39:59:397 932 1320 Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2010-04-20 13:39:59:397 932 1320 Report WER Report sent: 7.3.7600.16385 0x80072ee6 D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed
    2010-04-20 13:39:59:397 932 1320 Report CWERReporter finishing event handling. (00000000)
    Part of the log before that:
    2010-04-20 12:41:32:654 932 590 PT WARNING: PTError: 0x80072ee6
    2010-04-20 12:41:32:654 932 590 PT WARNING: Initialization failed for Protocol Talker Context: 0x80072ee6
    2010-04-20 12:41:32:654 932 590 Report WARNING: Reporter failed to upload events with hr = 80072ee6.
    2010-04-20 12:47:35:027 932 9ec AU #############
    2010-04-20 12:47:35:027 932 9ec AU ## START ## AU: Search for updates
    2010-04-20 12:47:35:027 932 9ec AU #########
    2010-04-20 12:47:35:027 932 9ec AU <<## SUBMITTED ## AU: Search for updates [CallId = {EC4FD2F6-5BB1-440D-84A9-FB1574352B9F}]
    2010-04-20 12:47:35:027 932 590 Agent *************
    2010-04-20 12:47:35:027 932 590 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-20 12:47:35:027 932 590 Agent *********
    2010-04-20 12:47:35:027 932 590 Agent * Online = Yes; Ignore download priority = No
    2010-04-20 12:47:35:027 932 590 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2010-04-20 12:47:35:027 932 590 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-04-20 12:47:35:027 932 590 Agent * Search Scope = {Machine}
    2010-04-20 12:47:35:027 932 590 Setup Checking for agent SelfUpdate
    2010-04-20 12:47:35:043 932 590 Setup Client version: Core: 7.3.7600.16385 Aux: 7.3.7600.16385
    2010-04-20 12:47:35:043 932 590 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-04-20 12:47:35:059 932 590 Misc Microsoft signed: Yes
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: WinHttpCrackUrl failed. error 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: WinHttp: Initialize failed with 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Misc WARNING: DownloadFileInternal failed for AGR-SRV-WSUS/selfupdate/wuident.cab: error 0x80072ee6
    2010-04-20 12:47:35:059 932 590 Setup WARNING: SelfUpdate check failed to download package information, error = 0x80072EE6
    2010-04-20 12:47:35:059 932 590 Setup FATAL: SelfUpdate check failed, err = 0x80072EE6
    2010-04-20 12:47:35:059 932 590 Agent * WARNING: Skipping scan, self-update check returned 0x80072EE6
    2010-04-20 12:47:35:074 932 590 Agent * WARNING: Exit code = 0x80072EE6
    2010-04-20 12:47:35:074 932 590 Agent *********
    2010-04-20 12:47:35:074 932 590 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-20 12:47:35:074 932 590 Agent *************
    2010-04-20 12:47:35:074 932 590 Agent WARNING: WU client failed Searching for update with error 0x80072ee6
    2010-04-20 12:47:35:074 932 13e8 AU >>## RESUMED ## AU: Search for updates [CallId = {EC4FD2F6-5BB1-440D-84A9-FB1574352B9F}]
    2010-04-20 12:47:35:074 932 13e8 AU # WARNING: Search callback failed, result = 0x80072EE6
    2010-04-20 12:47:35:074 932 13e8 AU # WARNING: Failed to find updates with error code 80072EE6
    2010-04-20 12:47:35:074 932 13e8 AU #########
    2010-04-20 12:47:35:074 932 13e8 AU ## END ## AU: Search for updates [CallId = {EC4FD2F6-5BB1-440D-84A9-FB1574352B9F}]
    2010-04-20 12:47:35:074 932 13e8 AU #############
    2010-04-20 12:47:35:074 932 13e8 AU Successfully wrote event for AU health state:0
    2010-04-20 12:47:35:074 932 13e8 AU AU setting next detection timeout to 2010-04-20 15:47:35
    2010-04-20 12:47:35:074 932 13e8 AU Successfully wrote event for AU health state:0
    2010-04-20 12:47:35:074 932 13e8 AU Successfully wrote event for AU health state:0
    2010-04-20 12:47:40:066 932 590 Report REPORT EVENT: {B7F9094C-3FE2-4629-9B1A-1E4DB1DB51F3} 2010-04-20 12:47:35:059+0200 1 148 101 {D67661EB-2423-451D-BF5D-13199E37DF28} 1 80072ee6 SelfUpdate Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee6.
    2010-04-20 12:47:40:129 932 590 Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2010-04-20 12:47:40:129 932 590 Report WER Report sent: 7.3.7600.16385 0x80072ee6 D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed
    2010-04-20 12:47:40:129 932 590 Report CWERReporter finishing event handling. (00000000)
    2010-04-20 12:56:45:669 932 590 PT WARNING: PTError: 0x80072ee6
    2010-04-20 12:56:45:669 932 590 PT WARNING: Initialization failed for Protocol Talker Context: 0x80072ee6
    2010-04-20 12:56:45:669 932 590 Report WARNING: Reporter failed to upload events with hr = 80072ee6.
    2010-04-20 13:08:56:682 932 590 PT WARNING: PTError: 0x80072ee6
    2010-04-20 13:08:56:682 932 590 PT WARNING: Initialization failed for Protocol Talker Context: 0x80072ee6
    2010-04-20 13:08:56:682 932 590 Report WARNING: Reporter failed to upload events with hr = 80072ee6.
    2010-04-20 13:08:56:682 932 590 Report WARNING: Discarding a batch of 1 events because they have expired.
    2010-04-20 13:08:56:698 932 590 PT WARNING: PTError: 0x80072ee6
    2010-04-20 13:08:56:698 932 590 PT WARNING: Initialization failed for Protocol Talker Context: 0x80072ee6
    2010-04-20 13:08:56:698 932 590 Report WARNING: Reporter failed to upload events with hr = 80072ee6.
    2010-04-20 13:23:17:734 932 590 PT WARNING: PTError: 0x80072ee6
    2010-04-20 13:23:17:734 932 590 PT WARNING: Initialization failed for Protocol Talker Context: 0x80072ee6
    2010-04-20 13:23:17:734 932 590 Report WARNING: Reporter failed to upload events with hr = 80072ee6.
    Is this what you meant?

  • Unable to Check for Update on OS 5.1

    My iPad 2 will not update its software over the air and comes up with the message Unable to Check for Update.  I have tried updating via iTunes 10.6 and it just sits there trying to contact the update server.  I have also reset the iPad and restored from backup.  Exactly the same problem!
    Its nothing to do with the network as i get exactly the same problem at work as i do at home.  My iPhone 4S updated to 5.1 without any problem.  However my iPad just does not want to know.
    Please help!

    Correction. I started the update on my iPhone and my wife's iPad. However, they never finished. Each one returned an error message stating that the "Software Update Failed. An error occurred downloading iOS 5.1." I can't even get my ipad2 to get that far. It returns an error when trying to contact the server.

  • No prompt to update when Flash Player Settings Manager is set to check for updates automatically

    My understading of http://forums.adobe.com/message/3562892#3562892 (March 2011) is that when an outdated version of the Player is used on Windows, the prompt to update should occur after the next restart of the operating system.
    So, when http://www.adobe.com/software/flash/about/ in Safari for Windows shows an outdated version 10.x of the Player:
    I restart Windows
    I log on
    I wait a few minutes.
    Problem
    Usually, no matter how long I wait, there is no prompt to update; Flash Player Settings Manager continues to show an outdated plug-in alongside a greater version of the ActiveX item.
    I see this problem with multiple computers running Windows XP and Windows 7.
    Any suggestions?

    Flash Player checks for updates every 7 days. The NCP doesn’t change this.  Where the user in that post is getting confused is that only after Flash Player detected an update (on average 3.5 days after a new version is released), the dialog will appear after a restart.
    Chris

  • HT3576 Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    You have a 1st generation iPod Touch. It can not be upgraded beyond iOS 3.1.3, it is available at the link below.
    http://support.apple.com/kb/HT2052

  • HT4623 I have plugged in my ipad to my computer and Itunes is up on my computer but where do I find these things in Itunes, # In iTunes, select your device.  # In the Summary pane, click Check for Update, to update my ipad?

    I have plugged in my ipad to my computer and Itunes is up on my computer but where do I find these things in Itunes, # In iTunes, select your device.  # In the Summary pane, click Check for Update, to update my ipad?

    Tap to enlarge.

  • Aye have bought an old iphone 8gb phone its not a 3g one and aye can't download any apps because it needs to upgrade to ios4.3 how do aye upgrade my iphone? I have tried checking for updates but it keeps saying its up to date

    Aye need to update my old iphone 8gb its not a 3g phone its the older one to ios4.3 and it won't let me update so aye can't download any apps and aye have tried checking for updates and it says that my iphone is up to date can anyone help?

    To identify your iPhone see:
    http://support.apple.com/kb/HT3939

  • My iPad won't update or let me log into Facebook - says not correct version, but when I check for updates it says it is up to date with 5.1.1?

    My ipad won't let me into facebook and when I try to update App, it tells me facebook is not compatible with my ipad.  I checked for updates and it says I have the current version (5.1.1).  Should I have IOS 7 on this ipad and how to get?

    The first generation iPad can't be updated past 5.1.1.
    (97992)

  • When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  Any suggestions?

    When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  I have thought about deleting the app from my phone and then reloading it again but I worry that it will delete all my calendar info???  Any suggestions?

    To reset, press and hold the Home and power buttons until the silver apple appears.
    I would delete the app, reset the phone and then download the app again. Your calendar information should be stored on the phone as Week Cal uses the Calendar app information.
    Best of luck.

  • I currently have iTunes version 7 and I need to upgrade to version 10.  I am afraid of losing all my music if I just download 10 and when I use the "Check for updates" in the version 7 help menu, it tells me the server cannot be contacted.

    I currently have iTunes version 7 on my computer and need to upgrade to version 10 to sync my new nano iPod.  When I tried the "check for updates" under the version 7 "help" menu, it said it could not contact the update server.  I am afraid if I just download version 10 from the website, it will wipe out my music library.  What should I do to upgrade?

    Back up your music and install from the website. You probably won't need to do this, but if your library is erased, restore it from the backup.
    (59049)

  • When I try to update my phone to ios 7 it says i need to update my itunes to 11.0.5, when i check my current version in help menu under check for updates it says I have the current 11.0.5 version.

    When I try to update my phone to ios 7 it says i need to update my itunes to 11.0.5, when i check my current version in help menu under check for updates it says I have the current 11.0.5 version. Even the downloader for the update doesnt show that i need to update.Help plzz????

    There is some kind of error. The new version of iTunes is 11.1, which although is not available via updates, it can be downloaded from the Apple website here:
    http://www.apple.com/itunes/download/
    After updating iTunes to the newest version you should be able to update your iOS
    EDIT: I just did that and it works

  • I have installed itunes 10.7 several times.  All goes well.  After reboot, I go into itunes and check for updates and it says I need to download the update 10.7! (And so cant sync with my Iphone)

    I have installed itunes 10.7 several times, all goes well. After reeboot, I go to check for updates and it still wants to update to version 10.7! I cant sync to my iphone4 because I get an error message saying I need version 10.6.3 or later. Help

    Thank you for getting me started on the track by mentioning "Revo" Uninstaller.  The results of "Revo" spoke volumns on why a successful install of ITunes is so difficult to achieve.  It is the evil "BONJOUR".
    I then tripped upon the following site by Apple and the detailed directions (I read, printed, re-read and followed the instructions.  It was intense) brought a successful ITunes, Quick Time and the lovely Bonjour home.  Thank you for the start JD42.
    http://support.apple.com/kb/HT1923

Maybe you are looking for