Air HTTPService Stream Error #2032

Hi there,
I am currently creating an Air app which loads 1 or more xml on creation complete.
So what it does is, it searches for xml files in a given folder by looping over the contents in this folder, if it's an xml then it loads it using HTTPService, it then retrieves the xml data then moves the xml file to another folder, this repeats until all xml files have been loaded.
This is all working fine except sometimes not all xml files get loaded and I encounter the #2032 error, is this because I am loading multiple xml files one after the other in a loop?
This does not seem to happen if there is only one xml but two or more starts to get a bit temperamental.
Any help would be greatly appreciated, thank you,
Fuyuko

Hi there, thanks for your reply.  ok here is the code, when I instantiated the HTTPService object at the top as a private var it works 100% BUT now for some reason it tries to open the same xml three times for all three files! the first time it works, but the second and third time it errors(obviously!).
The code in red is the older code which I thought would be the way to do this but almost 50% of the time one of the files does not get loaded and instead gives me the dreaded #2032 error.....
            private var fileName:String;
            private var dir:File = new File("file:///C:/wamp/www/FileWatcher/Data");
            private var processedLocation:File = new File("file:///C:/wamp/www/FileWatcher/Data/processed");
            private var service:HTTPService = new HTTPService();
            private function init():void
                //get direcotry listing inside Data
                dir.getDirectoryListingAsync();
                //call function to retrieve the names of each file
                dir.addEventListener(FileListEvent.DIRECTORY_LISTING, getFileName);
            private function getFileName(event:FileListEvent):void
                for each(var item:File in event.files)
                    //trace(item.name);
                     if(item.name!="processed" && item.name!="log.txt")
                        //set variable to the item name
                        fileName = item.name;
                        //call function to open this file and load the xml contents
                         getData(fileName);
            private function getData(fileName:String):void
               var service:HTTPService = new HTTPService();
                var urlString:String = "http://localhost/FileWatcher/Data/"+fileName;
                service.resultFormat="e4x";
                service.url = urlString;
                service.addEventListener(ResultEvent.RESULT, function(e:ResultEvent):void{resultHandler(e, fileName)});
                service.addEventListener(FaultEvent.FAULT, function(e:FaultEvent):void{faultHandler(e, fileName)});
                service.send();    
             private function faultHandler(evt:FaultEvent, fileName:String):void
                var myDate:Date = new Date();
                var formattedDate:String = dateFormatter.format(myDate);
                var dateString:String = formattedDate+myDate.milliseconds;
                var message:String = "Fault occurred at "+dateString+" The origin of the fault is "+evt.message;
                trace("**********************ERROR**********************");
                trace("Loading data for "+fileName+" was unsuccessful at "+dateString+"\r\n");
            private function resultHandler(evt:ResultEvent, fileName:String):void
                //trace("result is "+evt.result.toString());
                //write data in to the database here
                //get directory listings inside Data
                var directory:File = new File("file:///C:/wamp/www/FileWatcher/Data");
                directory.getDirectoryListingAsync();
                //call function to move each file to the new location

Similar Messages

  • Android AIR App Random Error #2032: Stream Error (HTTPStatusEvent = 0)

    Hello
    I am investigating an issue with failed requests and it's been difficult to narrow it down. When I put the URL into a browser I get a valid / expected response. However when I try to access the same URL using Actionscript 3 on my Android Devices (Nexus S and Xoom), I get stream error #2032 at random.
    I am using URLRequest with a custom RequestListener class:
    var loader:URLLoader = new URLLoader();                 
    if(action == "zip") loader.dataFormat = URLLoaderDataFormat.BINARY;
    var listener:RequestListener = new RequestListener(action, loader, endFunction, extra);
    loader.addEventListener(Event.COMPLETE, listener.requestSuccessful);
    loader.addEventListener(IOErrorEvent.IO_ERROR, listener.requestFailed);
    loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, onHTTPStatusChange);
    var req:URLRequest = new URLRequest(Global.apiURL);
    req.method = URLRequestMethod.POST;
    req.data = new URLVariables(paramString);
    loader.load(req);
    return loader;
    Note that it works on one of my routers but not the access point:
    onHTTPStatusChange: 0
    requestFailed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: { ... }" errorID=2032]
    Since it works on one router but not the other, I can't say that it's an issue with the app, phone, or our request URL.
    Note that I am using SSL / https.
    Is it a timeout issue?? This is really frustrating.
    Thanks.

    @zhenya1919 - since you're currently going through this, could you please open a new bug report on this over at https://bugbase.adobe.com?  When adding the bug, please include some sample code or a sample application so we can quickly test this out internally.  If you'd like to keep this private, feel free to email the attachment to me directly ([email protected]). 
    Once added, please post back with the URL so that others effected can add their comments and votes.
    Thanks,
    Chris

  • Streaming Error #2032 in Internet Explorer

    Hi,
    I have a probem with running my dashboards in Internet Explorer.
    When I am running several dashboards on one PC, I will start getting Error #2032 on the dashboards.
    If I run the dashboards in Mozilla Firefox, I don't get any #2032 errors.
    In my dashboards there are alot of web service connections, but the web server is running on an IIS 6.0, so the web server can handle quite a big amount of web services.
    Does anyone have any experience with this kind of problem?
    I have been thinking if it is Internet Explorers implementation of Flash that is causing this problem?
    All comments are very much appreciated.
    Best regards,
    Ole

    Sorry for the sllllooowww reply but we have been playing ping pong with BOBJ Support on this...with no success...
    The customer who is experiencing random 'Error #2032' on .swf files refreshed while logged on inside or outside the firewall (contrary to my original post). This is not restricted to any specific .swf or Xcelsius component.
    -The is an https:// environment
    -The crossdomain is as follows:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-http-request-headers-from domain="" headers="" secure="false" />
    <allow-access-from domain="*" secure="false" />
    </cross-domain-policy>
    -The Adobe Global Security Settings at
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html
    are set to "Always Allow"
    -SAP/BOBJ Support had us use Fiddler and other tools to get a trace, but none of them have shown anything of value. Maybe we are using such tools incorrectly?
    Has anyone been able to eradicate this seemingly Flash/Network issue with confidence? Any other tasks we can try or troubleshooting tips.

  • Regarding Stream error #2032

    Hi All,
    Iam getting streamerror #2032 frequently in my Flex web application .
    For your Reference we have used RSL link type in my Flex application project to load common class libraries(.swc) file.
    Please reply me with an solution
    Regards,
    karthik

    Try the forum for Flash Player. This is the forum for Acrobat Forms.

  • AS3 Stream Error

    I'm sending lots of variables to a PHP file to enter into a
    database, however, I keep getting a Stream Error #2032. After
    looking it up in the Appendixes, and finding "Stream Error.", I'm
    right where I was. It is a very long URL with about 65 variables..
    Is there some sort of limit?

    is your url correct? (test outside of flash.)
    is there a security violation (and you need a cross-domain
    policy file)?
    are you using GET or POST?

  • #2032 Stream Error when downloading .air file for update

    Hi guys,
    I have made a very simple self update air application. When
    the .air file to download for updating is on a localhost server
    everything works fine, however when the .air file is on a remote
    server I got a #2032 stream error when trying to download the .air
    file. (I tried to download the file using IE or Firefox and I get a
    404 error ; btw I am absolutely sure of the .air file URL )
    Does this happen because the .air file has been generated
    with my trial version of Adobe Air ?
    Thanks for your help.
    Olivier

    Thank you for your answer Oliver.
    I'm absolutely sure of the URL. I set the permissions on the
    remote web server to browse the directory with my explorer, I can
    see the .air file but when I click on that file I get that 404
    error. (I hit the refresh button of my browser to be sure to have
    the correct files list). Btw something interesting to notice is
    that when I rename the .air file to .zip I can download the file.
    I have tried with another remote server and it works. There
    may be some misconfiguration somewhere with the first server I
    tried.

  • Error 2032 returned after AIR 3.7?

    After the updates on April 10th, our AIR application is giving the same I/O errors from a few years back.
    HTTP request error: Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032].
    I noticed in the release notes something about 'sandbox' updates.  This could cause trouble for an older flex app like ours.
    Has anyone else seen this behavior?
    Here is one of the requests that isn't working:
    Top level version info:
    xmlns:app="app.*"
    xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:updater="http://updater.readingcompanion.org/"
    Function:
    private function submitDraftWithRec( event:Object ):void {
                if (event.detail == Alert.YES ) {
                    displayFreezePopup("Submitting draft with recordings, please wait... This could take a couple of minutes.");
                    var httpSvc:HTTPService = new HTTPService();
                    httpSvc.url = BB_WEB_APP_URL + "book/submitDraft";
                    httpSvc.method = "POST";
                    httpSvc.addEventListener(ResultEvent.RESULT, submitResultHndlr); 
                    httpSvc.addEventListener(FaultEvent.FAULT, httpFault);
                    httpSvc.send({"bookID":BOOK_ID, "userID":AUTHOR_ID, "withRecordings":true});

    don't know if this is relevant but having trouble installing an app and getting similar error. Driving me nuts, which is why Im here
    [2012-02-27:18:25:52] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-02-27:18:25:52] Commandline is:
    [2012-02-27:18:25:52] No installed runtime detected
    [2012-02-27:18:25:57] Relaunching with elevation
    [2012-02-27:18:25:57] Launching subprocess with commandline c:\users\chrisg\appdata\local\temp\aircb80.tmp\adobe air installer.exe -ei
    [2012-02-27:18:26:03] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-02-27:18:26:03] Commandline is: -stdio \\.\pipe\AIR_7940_0 -ei
    [2012-02-27:18:26:03] No installed runtime detected
    [2012-02-27:18:26:03] Starting silent runtime install. Installing runtime version 3.1.0.4880
    [2012-02-27:18:26:03] Installing msi at c:\users\chrisg\appdata\local\temp\aircb80.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2012-02-27:18:26:06] Runtime Installer end with exit code 0
    [2012-02-27:18:26:07] Elevated install completed
    [2012-02-27:18:26:09] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2012-02-27:18:26:10] Runtime Installer end with exit code 0
    [2012-02-27:18:26:10] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-02-27:18:26:10] Commandline is: -installupdatecheck
    [2012-02-27:18:26:10] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-02-27:18:26:11] Performing pingback request
    [2012-02-27:18:26:13] Pingback request completed with HTTP status 200
    [2012-02-27:18:26:13] Starting runtime background update check
    [2012-02-27:18:26:13] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-02-27:18:26:13] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-02-27:18:26:15] Runtime update not available
    [2012-02-27:18:26:15] Unpackaging cancelled
    [2012-02-27:18:26:15] Runtime Installer end with exit code 0
    [2012-02-27:18:45:46] Application Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-02-27:18:45:46] Commandline is: C:\Users\ChrisG\Downloads\MyHomePC.air
    [2012-02-27:18:45:46] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-02-27:18:45:46] Unpackaging file:///C:/Users/ChrisG/Downloads/MyHomePC.air to C:\Users\ChrisG\AppData\Local\Temp\fla10D9.tmp
    [2012-02-27:18:45:57] Application signature verified
    [2012-02-27:18:45:57] Unpackaging/validation complete
    [2012-02-27:18:45:57] No app located for appID 'MyHomePC' and pubID ''
    [2012-02-27:18:46:06] Converting unpackaged application to a native installation package in C:\Users\ChrisG\AppData\Local\Temp\fla5F09.tmp
    [2012-02-27:18:46:07] Native installation package creation succeeded
    [2012-02-27:18:46:07] Starting app installation to C:\Program Files (x86)\Control4. Installing app MyHomePC version 2.2.0.158343 using the source file at file:///C:/Users/ChrisG/Downloads/MyHomePC.air
    [2012-02-27:18:46:07] Installing msi at C:\Users\ChrisG\AppData\Local\Temp\fla5F09.tmp\setup.msi with guid {9DD93EE4-7802-0F7F-FDD5-DE542AF40F81}
    [2012-02-27:18:46:08] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2012-02-27:18:46:08] Rolling back install of C:\Users\ChrisG\AppData\Local\Temp\fla5F09.tmp\setup.msi
    [2012-02-27:18:46:08] Rollback complete
    [2012-02-27:18:46:08] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2012-02-27:18:46:08] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)\Control4" -desktopShortcut -programMenu file:///C:/Users/ChrisG/Downloads/MyHomePC.air
    [2012-02-27:18:46:08] Relaunching with elevation
    [2012-02-27:18:46:11] Application Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-02-27:18:46:11] Commandline is: -stdio \\.\pipe\AIR_6568_0 -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)\Control4" -desktopShortcut -programMenu file:///C:/Users/ChrisG/Downloads/MyHomePC.air
    [2012-02-27:18:46:11] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-02-27:18:46:11] Unpackaging file:///C:/Users/ChrisG/Downloads/MyHomePC.air to C:\Users\ChrisG\AppData\Local\Temp\fla72A7.tmp
    [2012-02-27:18:46:14] Application signature verified
    [2012-02-27:18:46:14] Unpackaging/validation complete
    [2012-02-27:18:46:14] No app located for appID 'MyHomePC' and pubID ''
    [2012-02-27:18:46:14] Converting unpackaged application to a native installation package in C:\Users\ChrisG\AppData\Local\Temp\fla7DFE.tmp
    [2012-02-27:18:46:15] Native installation package creation succeeded
    [2012-02-27:18:46:15] Starting silent app installation to C:\Program Files (x86)\Control4. Installing app MyHomePC version 2.2.0.158343 using the source file at file:///C:/Users/ChrisG/Downloads/MyHomePC.air
    [2012-02-27:18:46:15] Installing msi at C:\Users\ChrisG\AppData\Local\Temp\fla7DFE.tmp\setup.msi with guid {9DD93EE4-7802-0F7F-FDD5-DE542AF40F81}
    [2012-02-27:18:46:18] Application Installer end with exit code 0
    [2012-02-27:18:46:18] Elevated install completed
    [2012-02-27:18:46:19] Launching subprocess with commandline C:\Program Files (x86)\Control4\MyHomePC\MyHomePC.exe
    [2012-02-27:18:46:24] Application Installer end with exit code 0
    [2012-04-04:19:32:44] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-04-04:19:32:45] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-04-04:19:32:45] Commandline is: -updatecheck
    [2012-04-04:19:32:45] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-04-04:19:32:45] Performing pingback request
    [2012-04-04:19:32:45] Starting runtime background update check
    [2012-04-04:19:32:45] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-04-04:19:32:45] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-04-04:19:33:37] Unpackaging complete
    [2012-04-04:19:33:42] Download success
    [2012-04-04:19:33:42] Runtime updated downloaded
    [2012-04-04:19:33:48] User had deferred installing the update
    [2012-04-04:19:33:48] Runtime Installer end with exit code 0
    [2012-04-16:18:12:32] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-04-16:18:12:33] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-04-16:18:12:33] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-04-16:18:12:33] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-04-16:18:12:33] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-04-16:18:12:33] Starting runtime background update installation
    [2012-04-16:18:12:33] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-04-16:18:12:33] Runtime updater successfully launched
    [2012-04-16:18:12:33] Runtime Installer end with exit code 0
    [2012-04-16:18:12:39] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-04-16:18:12:39] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-04-16:18:12:39] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-04-16:18:12:39] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-04-16:18:12:42] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-04-16:18:12:42] Runtime Installer end with exit code 6
    [2012-04-16:18:13:13] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-04-16:18:13:13] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-04-16:18:13:13] Commandline is: -updatecheck
    [2012-04-16:18:13:13] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-04-16:18:13:13] Performing pingback request
    [2012-04-16:18:13:13] Starting runtime background update check
    [2012-04-16:18:13:13] Clearing unused background update directory
    [2012-04-16:18:13:13] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-04-16:18:13:13] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-04-16:18:13:48] Unpackaging complete
    [2012-04-16:18:13:48] Download success
    [2012-04-16:18:13:48] Runtime updated downloaded
    [2012-04-16:18:13:51] User had deferred installing the update
    [2012-04-16:18:13:51] Runtime Installer end with exit code 0
    [2012-06-04:16:07:05] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-04:16:07:05] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-06-04:16:07:05] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-04:16:07:05] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-06-04:16:07:06] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-06-04:16:07:06] Starting runtime background update installation
    [2012-06-04:16:07:06] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-04:16:07:06] Runtime updater successfully launched
    [2012-06-04:16:07:06] Runtime Installer end with exit code 0
    [2012-06-04:16:07:10] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-06-04:16:07:10] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-04:16:07:10] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-06-04:16:07:10] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-06-04:16:07:13] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-06-04:16:07:13] Runtime Installer end with exit code 6
    [2012-06-04:16:07:43] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-06-04:16:07:43] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-06-04:16:07:43] Commandline is: -updatecheck
    [2012-06-04:16:07:43] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-06-04:16:07:43] Performing pingback request
    [2012-06-04:16:07:43] Starting runtime background update check
    [2012-06-04:16:07:43] Clearing unused background update directory
    [2012-06-04:16:07:44] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-06-04:16:07:44] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-06-04:16:08:13] Unpackaging complete
    [2012-06-04:16:08:13] Download success
    [2012-06-04:16:08:13] Runtime updated downloaded
    [2012-06-04:16:34:47] User had deferred installing the update
    [2012-06-04:16:34:47] Runtime Installer end with exit code 0
    [2012-06-06:19:21:39] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-06:19:21:40] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-06-06:19:21:40] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-06:19:21:40] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-06-06:19:21:40] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-06-06:19:21:42] Starting runtime background update installation
    [2012-06-06:19:21:42] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-06:19:21:46] Runtime updater successfully launched
    [2012-06-06:19:21:46] Runtime Installer end with exit code 0
    [2012-06-06:19:21:52] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    [2012-06-06:19:21:52] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-06-06:19:21:52] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-06-06:19:21:52] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-06-06:19:21:57] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-06-06:19:21:57] Runtime Installer end with exit code 6
    [2012-07-03:18:51:32] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-07-03:18:51:32] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-07-03:18:51:32] Commandline is: -updatecheck
    [2012-07-03:18:51:32] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-07-03:18:51:33] Performing pingback request
    [2012-07-03:18:51:33] Starting runtime background update check
    [2012-07-03:18:51:33] Clearing unused background update directory
    [2012-07-03:18:51:33] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-07-03:18:51:33] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-07-03:19:08:15] Unpackaging complete
    [2012-07-03:19:08:20] Download success
    [2012-07-03:19:08:20] Runtime updated downloaded
    [2012-07-03:19:15:00] User had deferred installing the update
    [2012-07-03:19:15:00] Runtime Installer end with exit code 0
    [2012-07-18:20:21:45] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-18:20:21:45] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-07-18:20:21:45] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-18:20:21:45] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-07-18:20:21:45] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-07-18:20:21:45] Starting runtime background update installation
    [2012-07-18:20:21:45] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-18:20:21:47] Runtime updater successfully launched
    [2012-07-18:20:21:47] Runtime Installer end with exit code 0
    [2012-07-18:20:21:52] Runtime Installer begin with version 3.3.0.3650 on Windows 7 x86
    [2012-07-18:20:21:52] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-18:20:21:52] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-07-18:20:21:52] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-07-18:20:21:56] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-07-18:20:21:56] Runtime Installer end with exit code 6
    [2012-07-18:20:22:26] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-07-18:20:22:27] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-07-18:20:22:27] Commandline is: -updatecheck
    [2012-07-18:20:22:27] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-07-18:20:22:27] Performing pingback request
    [2012-07-18:20:22:27] Starting runtime background update check
    [2012-07-18:20:22:27] Clearing unused background update directory
    [2012-07-18:20:22:27] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-07-18:20:22:27] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-07-18:20:22:28] Unpackaging complete
    [2012-07-18:20:22:28] Download success
    [2012-07-18:20:22:28] Runtime updated downloaded
    [2012-07-18:20:22:32] User had deferred installing the update
    [2012-07-18:20:22:32] Runtime Installer end with exit code 0
    [2012-07-20:17:42:31] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-20:17:42:32] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-07-20:17:42:32] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-20:17:42:32] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-07-20:17:42:32] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-07-20:17:42:32] Starting runtime background update installation
    [2012-07-20:17:42:32] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-20:17:42:35] Runtime updater successfully launched
    [2012-07-20:17:42:35] Runtime Installer end with exit code 0
    [2012-07-20:17:42:40] Runtime Installer begin with version 3.3.0.3650 on Windows 7 x86
    [2012-07-20:17:42:40] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-07-20:17:42:40] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-07-20:17:42:40] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-07-20:17:42:46] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-07-20:17:42:46] Runtime Installer end with exit code 6
    [2012-08-03:18:54:52] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-08-03:18:54:52] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-08-03:18:54:52] Commandline is: -updatecheck
    [2012-08-03:18:54:53] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-03:18:54:53] Performing pingback request
    [2012-08-03:18:54:53] Starting runtime background update check
    [2012-08-03:18:54:53] Clearing unused background update directory
    [2012-08-03:18:54:53] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-08-03:18:54:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-08-03:19:27:58] Runtime background update check failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="truncated or corrupt" errorID=0]
    [2012-08-03:19:27:58] Runtime Installer end with exit code 0
    [2012-08-05:14:16:16] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-08-05:14:16:17] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-08-05:14:16:17] Commandline is: -updatecheck
    [2012-08-05:14:16:17] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-05:14:16:17] Performing pingback request
    [2012-08-05:14:16:17] Starting runtime background update check
    [2012-08-05:14:16:17] Clearing unused background update directory
    [2012-08-05:14:16:17] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    [2012-08-05:14:16:17] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-08-05:14:17:11] Unpackaging complete
    [2012-08-05:14:17:11] Download success
    [2012-08-05:14:17:11] Runtime updated downloaded
    [2012-08-05:14:17:17] User had deferred installing the update
    [2012-08-05:14:17:17] Runtime Installer end with exit code 0
    [2012-08-24:19:34:22] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-08-24:19:34:22] Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    [2012-08-24:19:34:22] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-08-24:19:34:22] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-24:19:34:22] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-08-24:19:34:23] Starting runtime background update installation
    [2012-08-24:19:34:23] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-08-24:19:34:23] Runtime updater successfully launched
    [2012-08-24:19:34:23] Runtime Installer end with exit code 0
    [2012-08-24:19:34:25] Runtime Installer begin with version 3.3.0.3670 on Windows 7 x86
    [2012-08-24:19:34:25] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-08-24:19:34:25] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-24:19:34:25] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-08-24:19:34:30] Relaunching with elevation
    [2012-08-24:19:34:30] Launching subprocess with commandline c:\users\chrisg\appdata\local\temp\air9221.tmp\adobe air installer.exe -ei
    [2012-08-24:19:34:34] Runtime Installer begin with version 3.3.0.3670 on Windows 7 x86
    [2012-08-24:19:34:34] Commandline is: -stdio \\.\pipe\AIR_1588_0 -ei
    [2012-08-24:19:34:34] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-24:19:34:34] Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 3.3.0.3670
    [2012-08-24:19:34:34] Installing msi at c:\users\chrisg\appdata\local\temp\air9221.tmp\setup.msi with guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}
    [2012-08-24:19:34:39] Runtime Installer end with exit code 0
    [2012-08-24:19:34:39] Elevated install completed
    [2012-08-24:19:34:42] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-08-24:19:34:42] Runtime Installer end with exit code 0
    [2012-08-24:19:35:13] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-08-24:19:35:13] Runtime Installer begin with version 3.3.0.3670 on Windows 7 x86
    [2012-08-24:19:35:13] Commandline is: -updatecheck
    [2012-08-24:19:35:13] Installed runtime (3.3.0.3670) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-24:19:35:13] Performing pingback request
    [2012-08-24:19:35:24] Failure during pingback request: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-08-24:19:35:24] Runtime Installer end with exit code 0
    [2012-08-28:20:03:05] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-08-28:20:03:05] Runtime Installer begin with version 3.3.0.3670 on Windows 7 x86
    [2012-08-28:20:03:05] Commandline is: -updatecheck
    [2012-08-28:20:03:05] Installed runtime (3.3.0.3670) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-08-28:20:03:06] Performing pingback request
    [2012-08-28:20:03:09] Pingback request completed with HTTP status 200
    [2012-08-28:20:03:09] Starting runtime background update check
    [2012-08-28:20:03:09] Clearing unused background update directory
    [2012-08-28:20:03:09] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.3.0.3670/update
    [2012-08-28:20:03:09] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.3.0.3670/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-08-28:20:04:58] Unpackaging complete
    [2012-08-28:20:04:59] Download success
    [2012-08-28:20:04:59] Runtime updated downloaded
    [2012-08-28:20:05:04] User had deferred installing the update
    [2012-08-28:20:05:04] Runtime Installer end with exit code 0
    [2012-09-07:22:35:18] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-09-07:22:35:19] Runtime Installer begin with version 3.3.0.3670 on Windows 7 x86
    [2012-09-07:22:35:19] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-09-07:22:35:19] Installed runtime (3.3.0.3670) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-07:22:35:19] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-09-07:22:35:20] Starting runtime background update installation
    [2012-09-07:22:35:20] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-09-07:22:35:22] Runtime updater successfully launched
    [2012-09-07:22:35:22] Runtime Installer end with exit code 0
    [2012-09-07:22:35:27] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-07:22:35:27] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-09-07:22:35:27] Installed runtime (3.3.0.3670) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-07:22:35:27] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-09-07:22:35:33] Relaunching with elevation
    [2012-09-07:22:35:33] Launching subprocess with commandline c:\users\chrisg\appdata\local\temp\airf775.tmp\adobe air installer.exe -ei
    [2012-09-07:22:35:36] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-07:22:35:36] Commandline is: -stdio \\.\pipe\AIR_7780_0 -ei
    [2012-09-07:22:35:36] Installed runtime (3.3.0.3670) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-07:22:35:36] Starting silent runtime update. Updating runtime from version 3.3.0.3670 to version 3.4.0.2540
    [2012-09-07:22:35:36] Installing msi at c:\users\chrisg\appdata\local\temp\airf775.tmp\setup.msi with guid {14DC0059-00F1-4F62-BD1A-AB23CD51A95E}
    [2012-09-07:22:35:42] Runtime Installer end with exit code 0
    [2012-09-07:22:35:42] Elevated install completed
    [2012-09-07:22:35:59] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-09-07:22:35:59] Runtime Installer end with exit code 0
    [2012-09-07:22:36:30] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-09-07:22:36:31] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-07:22:36:31] Commandline is: -updatecheck
    [2012-09-07:22:36:31] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-07:22:36:32] Performing pingback request
    [2012-09-07:22:36:32] Failure during pingback request: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-09-07:22:36:32] Runtime Installer end with exit code 0
    [2012-09-07:22:37:16] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-09-07:22:37:16] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-07:22:37:16] Commandline is: -updatecheck
    [2012-09-07:22:37:16] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-07:22:37:16] Performing pingback request
    [2012-09-07:22:37:16] Failure during pingback request: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-09-07:22:37:16] Runtime Installer end with exit code 0
    [2012-09-07:22:38:51] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-09-07:22:38:51] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-07:22:38:51] Commandline is: -updatecheck
    [2012-09-07:22:38:51] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-07:22:38:51] Performing pingback request
    [2012-09-07:22:38:51] Failure during pingback request: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-09-07:22:38:51] Runtime Installer end with exit code 0
    [2012-09-11:19:49:26] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-09-11:19:49:26] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-11:19:49:26] Commandline is: -updatecheck
    [2012-09-11:19:49:26] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-11:19:49:27] Performing pingback request
    [2012-09-11:19:49:30] Pingback request completed with HTTP status 200
    [2012-09-11:19:49:30] Starting runtime background update check
    [2012-09-11:19:49:30] Clearing unused background update directory
    [2012-09-11:19:49:30] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-09-11:19:49:30] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-09-11:19:49:34] Runtime update not available
    [2012-09-11:19:49:34] Unpackaging cancelled
    [2012-09-11:19:49:34] Runtime Installer end with exit code 0
    [2012-09-12:21:12:34] Application Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-12:21:12:34] Commandline is: -playerVersion=11,3,300,270 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -url http://update.control4.com/release2/2.2.2.184775-res/win/MyHomePC.air
    [2012-09-12:21:12:34] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-12:21:12:34] Begin air file download from http://update.control4.com/release2/2.2.2.184775-res/win/MyHomePC.air
    [2012-09-12:21:12:34] Download destination is C:\Users\ChrisG\AppData\Local\Temp\flaB59.tmp
    [2012-09-12:21:12:37] Received download status 200
    [2012-09-12:21:12:37] Response URL is http://update.control4.com/release2/2.2.2.184775-res/win/MyHomePC.air
    [2012-09-12:21:17:51] Download success
    [2012-09-12:21:34:48] Unpackaging file:///C:/Users/ChrisG/AppData/Local/Temp/flaB59.tmp to C:\Users\ChrisG\AppData\Local\Temp\fla6414.tmp
    [2012-09-12:21:35:01] Application signature verified
    [2012-09-12:21:35:01] Unpackaging/validation complete
    [2012-09-12:21:35:01] Installed app (MyHomePC) located at C:\Program Files (x86)\Control4\MyHomePC\MyHomePC.exe
    [2012-09-12:21:35:12] Converting unpackaged application to a native installation package in C:\Users\ChrisG\AppData\Local\Temp\flaC2F6.tmp
    [2012-09-12:21:35:15] Native installation package creation succeeded
    [2012-09-12:21:35:15] Starting app update of C:\Program Files (x86)\Control4. Updating from MyHomePC version 2.2.0.158343 to MyHomePC version 2.2.2.184775-res using the source file at file:///C:/Users/ChrisG/AppData/Local/Temp/flaB59.tmp
    [2012-09-12:21:35:15] Installing msi at C:\Users\ChrisG\AppData\Local\Temp\flaC2F6.tmp\setup.msi with guid {CE5E5304-E679-0A12-8A51-6FAEF4604B84}
    [2012-09-12:21:35:17] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2012-09-12:21:35:17] Rolling back install of C:\Users\ChrisG\AppData\Local\Temp\flaC2F6.tmp\setup.msi
    [2012-09-12:21:35:17] Rollback complete
    [2012-09-12:21:35:17] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2012-09-12:21:35:17] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files (x86)\Common Files" -update -silent -logToStdout "C:\Program Files (x86)\Control4\MyHomePC\MyHomePC.exe" file:///C:/Users/ChrisG/AppData/Local/Temp/flaB59.tmp 2.2.2.184775-res
    [2012-09-12:21:35:17] Relaunching with elevation
    [2012-09-12:21:35:21] Application Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-12:21:35:21] Commandline is: -stdio \\.\pipe\AIR_11988_0 -runtime "c:\Program Files (x86)\Common Files" -update -silent -logToStdout "C:\Program Files (x86)\Control4\MyHomePC\MyHomePC.exe" file:///C:/Users/ChrisG/AppData/Local/Temp/flaB59.tmp 2.2.2.184775-res
    [2012-09-12:21:35:21] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-12:21:35:21] Installed app (MyHomePC) located at C:\Program Files (x86)\Control4\MyHomePC\MyHomePC.exe
    [2012-09-12:21:35:21] Unpackaging file:///C:/Users/ChrisG/AppData/Local/Temp/flaB59.tmp to C:\Users\ChrisG\AppData\Local\Temp\flaE7B3.tmp
    [2012-09-12:21:35:25] Application signature verified
    [2012-09-12:21:35:25] Unpackaging/validation complete
    [2012-09-12:21:35:25] Converting unpackaged application to a native installation package in C:\Users\ChrisG\AppData\Local\Temp\flaF7BB.tmp
    [2012-09-12:21:35:29] Native installation package creation succeeded
    [2012-09-12:21:35:29] Starting silent app update of C:\Program Files (x86)\Control4. Updating from MyHomePC version 2.2.0.158343 to MyHomePC version 2.2.2.184775-res using the source file at file:///C:/Users/ChrisG/AppData/Local/Temp/flaB59.tmp
    [2012-09-12:21:35:29] Installing msi at C:\Users\ChrisG\AppData\Local\Temp\flaF7BB.tmp\setup.msi with guid {CE5E5304-E679-0A12-8A51-6FAEF4604B84}
    [2012-09-12:21:35:43] Application Installer end with exit code 0
    [2012-09-12:21:35:43] Elevated install completed
    [2012-09-12:21:35:43] Launching subprocess with commandline C:\Program Files (x86)\Control4\MyHomePC\MyHomePC.exe
    [2012-09-12:21:35:45] Application Installer end with exit code 0
    [2012-09-17:18:55:38] Application Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-17:18:55:38] Commandline is: -playerVersion=11,4,402,265 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled yosidov.Kramer.KRC 5DC1F60EE182754EA170016BC9BC01C7C3B5E8D9.1 adobe.com:air0.13192242151126266 onApplicationVersion
    [2012-09-17:18:55:38] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-17:18:55:38] Application Installer end with exit code 0
    [2012-09-17:18:55:38] Application Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-17:18:55:38] Commandline is: -playerVersion=11,4,402,265 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled NewStyle 5DC1F60EE182754EA170016BC9BC01C7C3B5E8D9.1 adobe.com:air0.5722015118226409 onApplicationVersion
    [2012-09-17:18:55:38] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-17:18:55:38] Application Installer end with exit code 0
    [2012-09-23:19:28:32] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-09-23:19:28:32] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-23:19:28:32] Commandline is: -updatecheck
    [2012-09-23:19:28:32] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-23:19:28:33] Performing pingback request
    [2012-09-23:19:28:33] Starting runtime background update check
    [2012-09-23:19:28:33] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-09-23:19:28:33] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-09-23:19:28:33] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-09-23:19:28:33] Runtime Installer end with exit code 0
    [2012-09-29:16:33:09] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-09-29:16:33:09] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-29:16:33:09] Commandline is: -updatecheck
    [2012-09-29:16:33:09] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-29:16:33:10] Performing pingback request
    [2012-09-29:16:33:10] Starting runtime background update check
    [2012-09-29:16:33:10] Clearing unused background update directory
    [2012-09-29:16:33:10] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-09-29:16:33:10] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-09-29:16:33:10] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-09-29:16:33:10] Runtime Installer end with exit code 0
    [2012-09-30:21:05:06] Application Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-30:21:05:06] Commandline is: -playerVersion=11,4,402,265 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled NewStyle 5DC1F60EE182754EA170016BC9BC01C7C3B5E8D9.1 adobe.com:air0.01869283989071846 onApplicationVersion
    [2012-09-30:21:05:06] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-30:21:05:06] Application Installer end with exit code 0
    [2012-09-30:21:05:06] Application Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-30:21:05:06] Commandline is: -playerVersion=11,4,402,265 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled yosidov.Kramer.KRC 5DC1F60EE182754EA170016BC9BC01C7C3B5E8D9.1 adobe.com:air0.9440666832961142 onApplicationVersion
    [2012-09-30:21:05:06] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-30:21:05:06] Application Installer end with exit code 0
    [2012-10-02:20:46:54] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-02:20:46:55] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-02:20:46:55] Commandline is: -updatecheck
    [2012-10-02:20:46:55] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-02:20:46:55] Performing pingback request
    [2012-10-02:20:46:55] Starting runtime background update check
    [2012-10-02:20:46:55] Clearing unused background update directory
    [2012-10-02:20:46:55] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-02:20:46:55] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-02:20:46:55] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-02:20:46:55] Runtime Installer end with exit code 0
    [2012-10-06:20:03:53] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-06:20:03:53] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-06:20:03:53] Commandline is: -updatecheck
    [2012-10-06:20:03:53] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-06:20:03:54] Performing pingback request
    [2012-10-06:20:03:54] Starting runtime background update check
    [2012-10-06:20:03:54] Clearing unused background update directory
    [2012-10-06:20:03:54] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-06:20:03:54] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-06:20:03:54] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-06:20:03:54] Runtime Installer end with exit code 0
    [2012-10-10:20:28:01] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-10:20:28:02] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-10:20:28:02] Commandline is: -updatecheck
    [2012-10-10:20:28:02] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-10:20:28:02] Performing pingback request
    [2012-10-10:20:28:02] Starting runtime background update check
    [2012-10-10:20:28:02] Clearing unused background update directory
    [2012-10-10:20:28:02] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-10:20:28:02] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-10:20:28:02] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-10:20:28:02] Runtime Installer end with exit code 0
    [2012-10-11:21:49:43] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-11:21:49:44] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-11:21:49:44] Commandline is: -updatecheck
    [2012-10-11:21:49:44] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-11:21:49:44] Performing pingback request
    [2012-10-11:21:49:44] Starting runtime background update check
    [2012-10-11:21:49:44] Clearing unused background update directory
    [2012-10-11:21:49:44] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-11:21:49:44] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-11:21:49:44] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-11:21:49:44] Runtime Installer end with exit code 0
    [2012-10-19:20:17:37] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-19:20:17:39] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-19:20:17:39] Commandline is: -updatecheck
    [2012-10-19:20:17:39] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-19:20:17:39] Performing pingback request
    [2012-10-19:20:17:39] Starting runtime background update check
    [2012-10-19:20:17:39] Clearing unused background update directory
    [2012-10-19:20:17:39] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-19:20:17:39] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-19:20:17:39] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-19:20:17:39] Runtime Installer end with exit code 0
    [2012-10-21:00:13:59] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-21:00:13:59] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-21:00:13:59] Commandline is: -updatecheck
    [2012-10-21:00:13:59] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-21:00:14:00] Performing pingback request
    [2012-10-21:00:14:00] Starting runtime background update check
    [2012-10-21:00:14:00] Clearing unused background update directory
    [2012-10-21:00:14:00] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-21:00:14:00] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-21:00:14:00] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-21:00:14:00] Runtime Installer end with exit code 0
    [2012-10-28:21:58:19] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-28:21:58:20] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-28:21:58:20] Commandline is: -updatecheck
    [2012-10-28:21:58:20] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-28:21:58:20] Performing pingback request
    [2012-10-28:21:58:20] Starting runtime background update check
    [2012-10-28:21:58:20] Clearing unused background update directory
    [2012-10-28:21:58:20] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-28:21:58:20] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-28:21:58:20] Runtime background update check failed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2012-10-28:21:58:20] Runtime Installer end with exit code 0
    [2012-11-03:19:28:23] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-11-03:19:28:25] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-11-03:19:28:25] Commandline is: -updatecheck
    [2012-11-03:19:28:25] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-11-03:19:28:25] Performing pingback request
    [2012-11-03:19:28:25] Starting runtime background update check
    [2012-11-03:19:28:25] Clearing unused background update directory
    [2012-11-03:19:28:25] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-11-03:19:28:25] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-11-03:19:46:23] Unpackaging complete
    [2012-11-03:19:46:28] Download success
    [2012-11-03:19:46:28] Runtime updated downloaded
    [2012-11-03:19:50:55] User had deferred installing the update
    [2012-11-03:19:50:55] Runtime Installer end with exit code 0
    [2012-11-06:22:12:41] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-06:22:12:41] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-11-06:22:12:41] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-06:22:12:41] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-11-06:22:12:41] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-11-06:22:12:41] Starting runtime background update installation
    [2012-11-06:22:12:41] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-06:22:12:43] Runtime updater successfully launched
    [2012-11-06:22:12:43] Runtime Installer end with exit code 0
    [2012-11-06:22:12:48] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-11-06:22:12:48] Commandline is: -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-06:22:12:48] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-11-06:22:12:48] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-11-06:22:12:51] Launching subprocess with commandline c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-11-06:22:12:51] Runtime Installer end with exit code 6
    [2012-11-15:22:36:26] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-11-15:22:36:26] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-11-15:22:36:26] Commandline is: -updatecheck
    [2012-11-15:22:36:26] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-11-15:22:36:27] Performing pingback request
    [2012-11-15:22:36:27] Starting runtime background update check
    [2012-11-15:22:36:27] Clearing unused background update directory
    [2012-11-15:22:36:27] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-11-15:22:36:27] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-11-15:22:37:35] Unpackaging complete
    [2012-11-15:22:37:35] Download success
    [2012-11-15:22:37:35] Runtime updated downloaded
    [2012-11-15:22:37:57] User had deferred installing the update
    [2012-11-15:22:37:57] Runtime Installer end with exit code 0
    [2012-11-16:19:06:28] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-16:19:06:28] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-11-16:19:06:28] Commandline is: -applyupdates "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-16:19:06:28] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-11-16:19:06:28] Installed app (MyHomePC) located at c:\program files (x86)\control4\myhomepc\myhomepc.exe
    [2012-11-16:19:06:29] Starting runtime background update installation
    [2012-11-16:19:06:29] Launching subprocess with commandline C:\Users\ChrisG\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\control4\myhomepc\myhomepc.exe"
    [2012-11-16:19:06:31] Runtime updater successfully launched
    [2012-11-16:19:06:31] Runtime Installer end with exit code 0
    [2012-11-16:19:06:36] Runtime Installer begin with version 3.5.0.600 on Windows 7 x86

  • Air app install fail in IE with Badge Installer Error # 2032

    Much has been written about this problem, and the most quoted solutions are
    Ensure the appurl FlashVar is not a relative url but fully qualified http://domain.com/app.air
    Uninstall and reinstall Air
    Empty browser's cache
    None of these have solved my issue and I still have a reproducible bug.
    I have set up a badge installer at http://tx.flamjam.com/mms/ which attempts to install appurl=http:/tx.flamjam.com/mms/MMSReview.air
    This works beautifully in OS X but fails in Windows with the error window,
    Sorry, an error has occurred.
    The application could not be installed. Try installing it again. If the problem persists, contact the application author.
    Error# 2032
    I've tested IE and Chrome, both updated to the most recent versions.
    When Air is not installed I get a slightly different error message, with no error number.
    The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author.
    With Air installed, if I instead visit the appurl directly in the browser — http:/tx.flamjam.com/mms/MMSReview.air —  the file downloads and installs without problem.
    To the best of my knowledge, the error is a generic stream error which essentially means that the appurl could not be found. To demonstrate this, simply use a fictitous appurl and now the same error can be seen on OS X as well. This implies that something is malforming the appurl withing the badge, but I have modified the status display text of the badge to display the appurl parsed from the LoaderInfo object containing FlashVars payload and can confirm that the appurl appears to be consistent between OS X and Win.
    Log file in next post.
    I'll continue digging for a solution, and post my findings here, but would value other's input on this subject greatly.

    An interesting development.
    When I monitor my network traffic using ServiceCapture I can see that no attempt is made to connect to the appurl, with the install failing instantly without even attempting to connect to the appurl.
    ServiceCapture on OS X confirms the attempt to connect to the appurl even if the url is deliberately fictitous resulting in a 404 response.
    The badge begins the installation process using the installApplication method of the following file
    http://airdownload.adobe.com/air/browserapi/air.swf
    which the badge loads on startup.
    It would appear to me that the installation problem is failing inside that loaded swf's code, but I'm at a loss as to how to debug that.

  • HttpService POST json -  Error #2032

    Hi,
    I'm trying to POST json data to my Rest Service (please find code snippet below). On the faultHandler I get the following error
    message    "faultCode:Server.Error.Request faultString:'HTTP request error' faultDetail:'Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: https://135.123.128.9/mgmt/Users"]. URL: https://hostname/mgmt/Users'" 
    <code>
         private function clickHandler(event:ItemClickEvent):void {
                        var user:User=new User();
                        user.loginName= login.text;
                        user.surname= lastName.text;
                        user.givenName= firstName.text;
                        user.userPassword=password.text;
                        createUserHttpService.contentType="application/json";
                        createUserHttpService.send(JSON.encode(userCopy));
          <mx:HTTPService id="createUserHttpService" 
                          useProxy="false" method="POST" result="userByUserIdServiceResultHandler(event);"
                           url="https://135.123.128.9/mgmt/Users"   fault="createUserServiceFaultHandler(event);" showBusyCursor="true" />                 
    </code>
    Thanks in advance
    ~Shankar

    #1 - yes
    #2 - yes, but im able to do GET on the same server and also POST for  content-type="text".
    Can there be something specific if content-type="application/json" and POST  ?
    Alternatively if someone can provide me a small code snippet which sends  json in the body of a POST request using HttpServic, that would be great as  well.. may be im missing something my code
    Thanks

  • HTTPService problem (ioerror #2032) in flex AIR application

    Hi all,
    I am using flex 4.5 Hero Sdk. Flex Builder plugin. Win7x64. Adobe Air 2.5.
    I have a flex air project which contains 3 library projects included.
    The project uses one of the included libraries for managing HttpService calls to a Tomcat server.
    When I use "merge into code" option for building all projects there is no problem. I can both run in Adl and installed application (exe). HttpService calls works fine in both Adl and Air 2.5 runtime.
    When I use Rsl option for building all projects I can run-debug in Adl However when I run the installed version (I mean this time running the application not with adl, but with Flex Air 2.5.x version installed in win7x64) this time HttpService calls to the server gives ioerror (Error#2032).
    Some information I discovered (may not be related to the problem I stated above)
    When using rsl option, "use local RSLs when debugging" option makes the difference. If this option is false, Adl cannot run the application.
    I tried -use-network=true compiler option, but not sure if I did everything right while trying.
    Shortly I think I need some knowledge for working with RSLs. So, can anybody help me?

    Take a look at http://forums.adobe.com/message/3345972#3345972

  • Problem accessing web service, error 2032 Stream Error

    I'm building a small flex app hat uses two web services
    provided by the same coldfusion CFC.
    I've verified that I can successfully access the web services
    via HTTP, and one of the web services actually does work when
    called. Both return structures that contain a string var, a numeric
    var, and one or more query vars.
    Here is my web service declaration:
    quote:
    <mx:WebService id="ws"
    wsdl="https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc?wsdl"
    useProxy="false">
    <mx:operation name="queryDB" result="queryDBResult()"
    fault="queryDBFault(event)">
    <mx:request>
    <RUNDATE>{cboRunDate.selectedItem.XDATE}</RUNDATE>
    <ENTITYID>{txtEntityID.text}</ENTITYID>
    <LASTNAME>{txtLastName.text}</LASTNAME>
    <FIRSTNAME>{txtFirstName.text}</FIRSTNAME>
    <MINITIAL>{txtMiddleInitial.text}</MINITIAL>
    <PRFSCHCD>{cboPreferredSchool.selectedItem.TABLKEY}</PRFSCHCD>
    <PRRECTYP>{cboRecordType.selectedItem.TABLKEY}</PRRECTYP>
    <PRFCLASS>{txtPreferredClass.text}</PRFCLASS>
    </mx:request>
    </mx:operation>
    <mx:operation name="getListData"
    result="getListDataResult()" fault="getListDataFault()"/>
    </mx:WebService>
    Sorry if the formatting sucks, I don't know how to post
    "code" here.
    Anyway, the getListData() method works fine and populates my
    list boxes. But when I call the queryDB() method, I get the
    following fault event:
    quote:
    [FaultEvent fault=[RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032: Stream Error. URL:
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc"].
    URL:
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc"]
    messageId="1E553B99-DF28-ED72-62B8-B84AA3919F9A" type="fault"
    bubbles=false cancelable=true eventPhase=2]
    I've looked all over the place and I can't seem to find what
    this error means. I've tried all kinds of different ways of doing
    things. Right now I'm browsing the flex app via a file URL (C:\...)
    but I tried putting it up on the server too and that didn't work
    either.
    The method call *DOES* work when called via HTTP... ie
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc?method=queryDB&RUND ATE=2006-05-19&FIRSTNAME=&LASTNAME=SMITH&MINITIAL=&PRFSCHCD=&PRRECTYP=AL&PRFCLASS=&ENTITYI D=
    (You have to be logged in for that to work so you'll just
    have to trust me, it returns no records if you're not logged into
    the web site already).
    I'm totally stressing out about this because I've essentially
    spent the entire day since 8am trying to solve this. The
    application should've taken 15 minutes total.
    HELP!
    Thanks for any suggestions y'all have.
    Rick

    It means your output was not formed correctly and could not
    be parsed. set up a server side script or something to check that
    the output is indeed what you think it should be, 99% of the time i
    get thie error its due to malformed output from my webservice or
    db. Also try making an xml model of your target data to test the
    application internaly, look up model in the docs, it easy to use
    and if the model works then you know the data is faulty and you
    need to check your output and queries.

  • Calling URLLoader from AIR in Rapid Succession Causes Error 2032

    Hi All,
    Within AIR, I am issuing multiple POST calls with URLLoader in rapid succession to the same web service on the same server.
    About half of them fail with error #2032. In the HTTPStatus handler, I get status=0.
    I suspected keep-alive issues, so I added "Content: close" to the URLRequest header and made sure I called URLLoader.close() as soon as I got a succesful response from calls which succeeded- but no joy.
    I would appreciate any ideas.
    mlavie

    Kglad and Amy - thanks for your responses.
    I inspected the traffic in Fiddler and Wireshark. It appears that AIR is not even trying to reach the server for those failed instances. After extensive Googling, it seems that mutiple URLLoader calls is a sure recipe for problems. I made the calls serial by having each Success handler call the next URLLoader.
    Again - thanks for repsonding,
    mlavie

  • Anyone else getting adobe AIR error 2032 when trying to download Adobe max companion?

    Hey;
    I'm attending max for my first time and am psyched. I've tried downloading the Adobe MAX companian at http://www.max.adobe.com/companion but I keep getting error 2032. I'm wondering if I'm the only one experiencing this problem and if so what can I do to fix it? Thanks for your replies in advance.

    Thank you for responding. I found the problem. No it isn't a flash player
    issue it is an AIR issue. I didn't know there was an AIR forum. I will post
    the answer here instead of duplicating posts. If you are a developer and
    have a virtual server on your computer you most likely will run into the AIR
    error 2032 when trying to download the MAX companion for the conference
    starting tommorow-Wednesday (Monday-Wednesday). You need to either add in a
    chunk of code to your server that allows AIR to run or use a different
    computer. I used a different computer but I read that someone found the
    solution to this error is to add the code to their virtual server. I use
    XAMPP, which is a rather popular Virtual Server. Okay well I hope this helps
    anyone in the future.

  • Random error #2032 from flex air application

    Sometimes in my air application I am getting one error #2032 - but on re-sending this query it works fine. I suspect this is some timing issue. What could be possible use cases where it can fail like this.

    Of course you may have some unstated reason for doing this in Air, but if not...
    Google photoshop droplet....
    Bob

  • AIR Installer Error# 2032

    I created an Adobe AIR application using html, css and Javascript in Dreamweaver. The application works fine, but now that I have built the installer I get the following error:
    Sorry, an error has occurred.
    The application could not be installed. Try installing it again. If the problem persists, contact the application author.
    Error# 2032
    I am the application author...
    The link to the installer: http://www.bendelcorp.com/tools/default_badge.html
    The Flash Vars code:
       'flashvars','appname=Bendel-Tools&appurl=http://www.bendelcorp.com/tools/Bendel-Tools.air&airversion=1.5&imageurl=icon2.png',
            'movie','badge' );
    I would appreciate any assistance for resolving this. Thanks.

    An interesting development.
    When I monitor my network traffic using ServiceCapture I can see that no attempt is made to connect to the appurl, with the install failing instantly without even attempting to connect to the appurl.
    ServiceCapture on OS X confirms the attempt to connect to the appurl even if the url is deliberately fictitous resulting in a 404 response.
    The badge begins the installation process using the installApplication method of the following file
    http://airdownload.adobe.com/air/browserapi/air.swf
    which the badge loads on startup.
    It would appear to me that the installation problem is failing inside that loaded swf's code, but I'm at a loss as to how to debug that.

Maybe you are looking for