AIR: Socket ProgressEvent.SOCKET_DATA not dispatched

Hi,
Currently using Adobe AIR with flex 3 to communicate with a
REST web service. I require to have full access to the HTTP header
information to take advantage of the etag and last-modified
information for caching. I started by using the URLRequest that
provides the requestHeaders and using the HTTPStatusEvent with
responseHeaders to retrieve the information. Unfortunately the
responseHeaders are always empty, has anyone else seeing this
problem ?
I checked using a simple HTTP client, and the web service is
correctly providing the HTTP headers I require.
I decided to use sockets using the arc90 REST library:
http://lab.arc90.com/2008/03/restservice.php
This was all working fine...however from time to time, the
response is never detected. More precisely the ProgressEvent is
never fired when data is ready to read by the socket. Rooting
around I seen this bug:
http://bugs.adobe.com/jira/browse/SDK-14813
From what it says there seems to be a problem with flash
player, can anyone from Adobe provide a status on this bug ? and
whether this is also impacting the behaviour i see in AIR ?
I am testing AIR on Windows XP
Thanks for any help
James

Sorry to reply to my own questions, but thought I would post
this for anyone who had the same problems as I did:
Regarding what I said....
" I started by using the URLRequest that provides the
requestHeaders and using the HTTPStatusEvent with responseHeaders
to retrieve the information. Unfortunately the responseHeaders are
always empty"
This is true if you use:
dispatcher.addEventListener(HTTPStatusEvent.HTTP_STATUS,
httpStatusHandler);
If you wish to get the response headers in AIR, you need to
use
dispatcher.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS,
httpStatusHandler);
Thanks for this blog entry:
http://www.judahfrangipane.com/blog/?p=87
Cheers
James

Similar Messages

  • Socket ProgressEvent.SOCKET_DATA

    I'm in trouble now.
    see flash.net.Socket
    My question:
    If the data being transmitted is very small or it happens
    very quickly, does ProgressEvent.SOCKET_DATA event might not be
    dispatched?
    Why I ask like this?
    Because, see flash.net.FileReference's ProgressEvent.PROGRESS
    event:
    In some cases, progress events are not received. For example,
    when the file being transmitted is very small or the upload or
    download happens very quickly a progress event might not be
    dispatched.
    thanks very much.

    Hi, has anyone discovered what is happening with this? I am having the same problem and also happen to be on a Vista 64bit system.
    I am able to reproduce the problem quite easily for anyone that already has a server loop set up and is sending messages to their flash client.
    In your flash SocketData handler function, just add a long loop, something like this:
    private function onSocketData (e:ProgressEvent):void
         var count:int = 0;
         while (count < 1000*1000)
              count++;
    The problem that I seem to be getting, is that in the time it takes my handler function to process the data, new data has arrived from my server loop (keeps sending messages super fast). It seems the new data is either getting queued up (although if it is, it's not being given to me in the order it arrives) or that the data is just being ignored/lost.
    Does anyone have any insight on this?
    I've added a delay of 100ms to the server loop and everything works fine, but this is definately not a long term solution and I've only done so to check if it is in fact the Flash side that's really buggered.
    Come to think of it, I'll try making my flash side extremely fast by simply dispatching a new event on the socketdata handler and see if those events get queued and/or lost/destroyed.

  • Does one socket.writeObject(obj) cause one ProgressEvent.SOCKET_DATA event?

    I use Air2.0 ServerSocket to communite with flash Socket client by using AMF.
    But network may not work correctly all the time. If one writeObject operation on client side cause 2 or more ProgressEvent.SOCKET_DATA on server side then we can not read correct object in ProgressEvent.SOCKET_DATA event handler.
    Does one socket.writeObject(obj) cause one ProgressEvent.SOCKET_DATA event?

    To submit feature requests, please visit the following page:
    http://ideas.adobe.com/air
    The AIR team actively monitors and reviews these requests.
    Rob Christensen
    Product Manager, Adobe AIR

  • AS3/Sockets: more than 100 ms between ProgressEvent.SOCKET_DATA events?

    Hello,
    I'm sending images from a server, in C-berkeley sockets, to a Flash client, both on the same Linux machine:
    Average size of each package: 35000 bytes.
    Flash requests an image, and the server sends it.
    Server spends 30 ms to get,compress and send the image.
    OpenCV is used to grab each frame from a webcam.
    On Flash, first frames are received in time, every 60 ms but then the elapsed time between two reception events (ProgressEvent.SOCKET_DATA is 170 ms. So it displays images with a low frame rate.
    The visualization is not smooth but blurred.
    Anyway, the server never waits more than 40 ms to get a client's request, this is what I measure at least..., so is either Flash or server "lying" to me?
    If I connect the same Flash to a "as3-server" (OpenKinect server which gets images from the Microsoft's Kinect), everything is OK.
    Maybe there is some issue on the server side but I'm using a dedicated one with the classical functions (bind, accept, read, write and close). Any thoughts?
    Regards.

    I'm experiencing the same issue.
    I'm sending images from a C# server to an AS3 client.
    Everything is fine, with a transfert time of around 30ms per image.
    Then, for no apparent reason images take 300 or 600 or more time to get to the client.
    Then, after even some more time, it fixes itself and goes back to 30ms.
    - When everything is fine, SOCKET_DATA events contain about 24820 bytes each. (images themselves are 1 to 8MB).
    - When the problem occurs, SOCKET_DATA events contain 65636 bytes each, with occasionally lower values.
    - It is only some SOCKET_DATA events that takes long to be called back, generally one or two per image sent.
    I have series like this:
    (normal)
    socket.bytesAvailable: 24820 bytes. Inactive for 0ms.
    socket.bytesAvailable: 24820 bytes. Inactive for 0ms.
    socket.bytesAvailable: 24820 bytes. Inactive for 0ms.
    (slow)
    socket.bytesAvailable: 65536 bytes. Inactive for 0ms.
    socket.bytesAvailable: 25996 bytes. Inactive for 0ms.
    socket.bytesAvailable: 6944 bytes. Inactive for 297ms.
    socket.bytesAvailable: 65536 bytes. Inactive for 0ms.
    socket.bytesAvailable: 65536 bytes. Inactive for 0ms.
    socket.bytesAvailable: 11104 bytes. Inactive for 0ms.
    socket.bytesAvailable: 6944 bytes. Inactive for 273ms.
    socket.bytesAvailable: 65536 bytes. Inactive for 0ms.
    Where "Inactive" is the ammount of time spent between SOCKET_DATA callbacks, outside of my code.
    Some packets just take super long to be reconstructed into the byte array and sent to me in the socket data event.
    It looks like this happen after a buffer underflow.
    I have verified that this behavior is not due to Flash rendering (same problem if I don't display the images or don't do anything else).
    Currently my only viable workaround is to detect these long transferts and force a disconnection and reconnection.
    Anyone has experienced this and found a better solution or explanation ?

  • ProgressEvent.SOCKET_DATA processing causes UI to be slow

    I'm working on an application using Flex Builder 2 with
    ActionScript 3. My app connects to a custom server speaking a
    proprietary protocol over a Socket. My goal is to test the
    throughput from the server to the client as it streams data,
    essentially just a stream of random bytes for now. The problem I
    have is that the client UI becomes unresponsive and fails to update
    as I spend time processing the incoming byte stream in the callback
    for ProgressEvent.SOCKET_DATA. Does anyone have any insight on this
    problem? I did a search and have seen that a few others have run
    into this issue as well, but there seems to be no resolution.
    Another note, I am working on the Windows platform, and I don't
    recall having this problem when I was running the same client code
    on a Mac. Something else I just thought of. I am testing by running
    both client and server on the same machine, and CPU is pegged at
    100%. Maybe this has an effect? I will try to change that scenario
    to isolate the problem further.
    Thanks,
    Chris Thompson

    Sorry to reply to my own questions, but thought I would post
    this for anyone who had the same problems as I did:
    Regarding what I said....
    " I started by using the URLRequest that provides the
    requestHeaders and using the HTTPStatusEvent with responseHeaders
    to retrieve the information. Unfortunately the responseHeaders are
    always empty"
    This is true if you use:
    dispatcher.addEventListener(HTTPStatusEvent.HTTP_STATUS,
    httpStatusHandler);
    If you wish to get the response headers in AIR, you need to
    use
    dispatcher.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS,
    httpStatusHandler);
    Thanks for this blog entry:
    http://www.judahfrangipane.com/blog/?p=87
    Cheers
    James

  • Some events are not dispatched when app runs in background

    My Android app has a TIMER event which fires once every second to connect a TCP socket (class flash.net.Socket) and send a request.
    A packet sniffer confirms that a socket is in fact connecting, request is sent, reply comes back and connection is closed, all happening once per second.
    Clearly, even with the app in the background, the TIMER event is occurring every second, because the timer handler is initating every socket.
    But not every closing connection causes a CLOSE event to dispatch, because my close handler is called less frequently.  Sometimes once in 3 seconds, 8 seconds or even longer.
    The CLOSE dispatches correctly once per second when the app is in the foreground.
    Why are CLOSE events being missed when the app is in the background?  What is the difference between a TIMER event and a CLOSE event, causing one to dispatch correctly but not the other?
    Thanks.

    I've narrowed my problem down by chopping pieces of code until it works, and I think I have it narrowed down to the code that uses FlexGraphing but need to check a bit more...
    It's odd that it works in Flex3 builder though, and there are no errors when I run in as AIR. In fact, the app RUNS, since it is in the task manager, but it won't appear.

  • Writing to socket with setinterval not working in windows

    Hello Everyone,
    I'm trying to stream a big file to my server, and was using 'setInterval' just fine to slowly upload it from OS X, but when I moved my AIR application to a Windows Vista computer, it no longer worked. I started doing some investigation and found out that 'socket.writeBytes' function was not working inside of 'setInterval'. I then moved the code inside of 'setInterval' to outside of it and everythink worked, but obviously it was no longer streaming. Thinking there was something wrong with 'setInterval', I tried it  without the 'socket.writeBytes' function in it, and it started working fine.
    Not sure what is happening, but it seems like a bug in the air.Socket code.
    Here is my code:
        var socket = new air.Socket();
        socket.addEventListener(air.Event.CONNECT, function(e) {
            var stream = setInterval(function() {
                   socket.writeBytes(filePart, 0, filePart.length);
                    if (isDone) {
                        clearInterval(stream);
            }, 1000);
        socket.connect("myServer", 80);
    P.S. I also tried using 'air.Timer' and it was the same behavior as 'setInterval'.
    Thanks for any help.

    Hi,
    You should use the flush method:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/Socket.html#f lush%28%29
    "Flushes any accumulated data in the socket's output buffer.
    On some operating systems, flush() is called automatically between execution frames, but on other operating systems, such as Windows, the data is never sent unless you call flush() explicitly. To ensure your application behaves reliably across all operating systems, it is a good practice to call the flush() method after writing each message (or related group of data) to the socket."
    I hope this helps!
    -Erica

  • 15 beta: ProgressEvent is not defined

    Thank you for your work on Air. You are doing a wonderfull job :-)
    The new publishing engine is way faster. The ipa seems smaller now.
    However I have the following error:
    ReferenceError: Error #1065: Variable ProgressEvent is not defined.
    This error didn't show up with the previous version (14.0.0.137).
    And I have the right include in the code:
    import flash.events.*;
    Is it a bug or did I make something wrong?
    Thank you

    Hi Shankshank,
    I get back to this because I had to find a solution with the new release.
    It turns out the problem is a bit tricky. PogressEvent is defined on Windows and Android.
    In iOS, ProgressEvent is defined except in one class. Don't know why.
    I do have a class called ProgressEvent but it didn't create problems before.
    Anyway I had to find a quick fix so I replaced ProgressEvent with its value ("progress") in the problematic class and everything was fine.
    Just to let you know.
    Best

  • I bought pages for my macbook air, but it is not showing up on my desktop mac

    I recently purchased Pages as it is on my ipad / iphone / ipod touch, so I thought why not have it on my Macbook air and desktop mac.  I bought it on the Macbook air, but it is not showing up on my purchases, and if I go to download it on the desktop, it states it is 19.99.  What am I doing wrong?

    Apps installed on your iOS devices cannot run on Mac OS X. Two different operating systems.
    If you want Pages on your Mac, you can purchase and download the Pages app for OS X here.
    Be aware, the minimum requirement for Pages for OS X is v10.9 or later.

  • HT201302 I am trying to copy photos from an iPad to a Mac Air, but iPhoto does not recognize them Do you have to use PhotoStream to do this. Please forgive the ignorance, but we have just started moving to apple products and I know nothing about them. Tha

    I am trying to copy photos from an iPad to a Mac Air, but iPhoto does not recognize them. Please forgive the ignorance, but we have just started moving to apple products and I know nothing about them. Do you have to use PhotoStream to do this?

    How did the photos that you want to copy off get on the iPad  ? To copy photos to your computer that were taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites then see this page - on a Mac you should be able to use iPhoto, Aperture or Image Capture
    To copy photos that were originally synced from a computer you will need a third-party app on your iPad such as Simple Transfer which can copy them off via your wifi network. But as photos are 'optimised' when they are synced to the iPad, any that you then copy back to a computer may not be exactly the same as they originally were on your computer.

  • Cannot install Adobe AIR; "An error occurred while installing Adobe AIR. Installation may not be allowed by your adminstrator"

    "An error has occurred while installing Adobe AIR. Installation may not be allowed by your administrator" I have tried disabling all antivirus and turning off firewall. I have tried downloading Fix IT. I have tried "Run as Administrator" Nothing has worked. Please help! I need this to run software for a class and am running out of time!
    Juliet

    I guess my problems are worse than I thought. I can't install the Air zapper tool or enable install logging. I keep getting errors on those as well.

  • CANNOT install Adobe AIR, administrator error. could not update past .20 version

    consistently receive following message:
    an error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator.
    I receive this message AS AN ADMINISTRATOR (only user on Netbook IS me, THE ADMIN). even in safe mode tried to update/install, same error. did NOT have this problem updating w/ previous versions (xxx.20 and earlier)
    I contacted myself, as instructed by the error message, and the response was Adobe failed to properly check administrator privileges for versions after .20
    the install log (which I guessing since this is being requested, this GLOBAL problem will have to be resolved 1 user at a time??):
    [2010-06-11:18:53:17] Performing runtime update
    [2010-06-11:18:53:18] UI SWF load is complete
    [2010-06-11:18:53:29] UI initialized
    [2010-06-11:18:53:29] starting user confirmation
    [2010-06-11:18:53:30] Version of this installer: 2.0.2.12610
    [2010-06-11:18:53:30] Installed version: 1.5.3.9130
    [2010-06-11:18:53:30] Installation type: patchNewer
    [2010-06-11:18:55:50] starting install
    [2010-06-11:18:55:50] Scheduling runtime installation operations
    [2010-06-11:18:55:50] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-06-11:18:55:50] Scheduling an MSI install operation
    [2010-06-11:18:55:50] Beginning runtime installation
    [2010-06-11:18:55:51] Beginning install
    [2010-06-11:18:55:51] Installing c:\docume~1\tamramb\locals~1\temp\air54.tmp\setup.msi
    [2010-06-11:18:56:26] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5A.tmp\temp
    [2010-06-11:18:56:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-11:18:56:36] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR54.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-11:18:56:41] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5B.tmp\temp
    [2010-06-11:18:56:44] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-11:18:56:44] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR54.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-11:18:56:46] Execution complete; beginning commit phase
    [2010-06-11:18:56:47] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5A.tmp\temp
    [2010-06-11:18:56:47] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5B.tmp\temp
    [2010-06-11:18:56:47] Commit complete
    [2010-06-11:18:56:47] install complete
    [2010-06-11:19:02:58] begin quitting
    [2010-06-11:21:38:05] UI SWF load is complete
    [2010-06-11:21:38:08] UI initialized
    [2010-06-11:21:38:11] Pingback request completed with HTTP status 200
    [2010-06-11:21:38:13] Begin background update check
    [2010-06-11:21:38:15] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-11:21:38:17] Background update not available
    [2010-06-11:21:38:21] begin quitting
    [2010-06-19:17:41:23] UI SWF load is complete
    [2010-06-19:17:41:25] UI initialized
    [2010-06-19:17:41:26] Begin background update check
    [2010-06-19:17:41:27] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-19:17:41:28] Background update not available
    [2010-06-19:17:41:29] begin quitting
    [2010-06-29:15:32:48] UI SWF load is complete
    [2010-06-29:15:32:51] UI initialized
    [2010-06-29:15:32:51] Begin background update check
    [2010-06-29:15:32:53] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-29:15:32:54] Background update not available
    [2010-06-29:15:32:55] begin quitting
    [2010-07-06:22:58:20] UI SWF load is complete
    [2010-07-06:22:58:25] UI initialized
    [2010-07-06:22:58:27] Begin background update check
    [2010-07-06:22:58:40] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-06:22:58:43] Background update not available
    [2010-07-06:22:58:44] begin quitting
    [2010-07-09:01:27:11] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_34.3.air
    [2010-07-09:01:27:11] UI SWF load is complete
    [2010-07-09:01:27:13] UI initialized
    [2010-07-09:01:27:14] beginning UI styling
    [2010-07-09:01:27:14] UI styling complete
    [2010-07-09:01:27:14] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3A.tmp
    [2010-07-09:01:27:17] Received HTTP Response Status event
    [2010-07-09:01:27:17] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_34.3.air
    [2010-07-09:01:27:25] Waiting for user confirmation
    [2010-07-09:01:29:06] User confirmed action: save
    [2010-07-09:01:29:06] Saving file to C:\Documents and Settings\TamraMB\Desktop\TweetDeck_0_34.3.air
    [2010-07-09:01:29:07] starting cleanup of temporary files
    [2010-07-09:01:29:07] application installer exiting
    [2010-07-09:01:36:23] Starting app install of file:///C:/Documents%20and%20Settings/TamraMB/Desktop/TweetDeck_0_34.3.air
    [2010-07-09:01:36:24] UI SWF load is complete
    [2010-07-09:01:36:25] UI initialized
    [2010-07-09:01:36:25] beginning UI styling
    [2010-07-09:01:36:26] UI styling complete
    [2010-07-09:01:36:26] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp
    [2010-07-09:01:37:03] unpackaging/validation is complete
    [2010-07-09:01:37:03] application is bound to this version of the runtime
    [2010-07-09:01:37:03] app id TweetDeckFast
    [2010-07-09:01:37:03] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-07-09:01:37:03] Application located at C:\program files
    [2010-07-09:01:37:04] Waiting for user confirmation
    [2010-07-09:01:37:11] User confirmed action: install
    [2010-07-09:01:37:11] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp
    [2010-07-09:01:37:37] native installer creation complete
    [2010-07-09:01:37:38] Starting install
    [2010-07-09:01:37:38] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp
    [2010-07-09:01:37:38] Beginning install
    [2010-07-09:01:37:38] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp\setup.msi
    [2010-07-09:01:38:22] Execution complete; beginning commit phase
    [2010-07-09:01:38:22] Commit complete
    [2010-07-09:01:38:26] Re-launching application from C:\program files\TweetDeck\TweetDeck.exe
    [2010-07-09:01:38:26] starting cleanup of temporary files
    [2010-07-09:01:38:56] application installer exiting
    [2010-07-15:09:42:29] UI SWF load is complete
    [2010-07-15:09:42:32] UI initialized
    [2010-07-15:09:42:32] Begin background update check
    [2010-07-15:09:42:32] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-15:09:42:41] Background update not available
    [2010-07-15:09:42:42] begin quitting
    [2010-07-22:14:42:33] UI SWF load is complete
    [2010-07-22:14:42:35] UI initialized
    [2010-07-22:14:42:35] Begin background update check
    [2010-07-22:14:42:42] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-22:14:42:58] Background update not available
    [2010-07-22:14:43:03] begin quitting
    [2010-07-30:08:51:07] UI SWF load is complete
    [2010-07-30:08:51:13] UI initialized
    [2010-07-30:08:51:13] Begin background update check
    [2010-07-30:08:51:18] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-30:08:51:29] Background update not available
    [2010-07-30:08:51:31] begin quitting
    [2010-08-09:18:23:21] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_34.3.2.air
    [2010-08-09:18:23:21] UI SWF load is complete
    [2010-08-09:18:23:24] UI initialized
    [2010-08-09:18:23:24] beginning UI styling
    [2010-08-09:18:23:24] UI styling complete
    [2010-08-09:18:23:24] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla36.tmp
    [2010-08-09:18:23:27] Received HTTP Response Status event
    [2010-08-09:18:23:27] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_34.3.2.air
    [2010-08-09:18:23:35] Waiting for user confirmation
    [2010-08-09:18:23:39] User confirmed action: install
    [2010-08-09:18:23:39] beginning UI styling
    [2010-08-09:18:23:39] UI styling complete
    [2010-08-09:18:23:40] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp
    [2010-08-09:18:24:07] unpackaging/validation is complete
    [2010-08-09:18:24:07] application is bound to this version of the runtime
    [2010-08-09:18:24:07] app id TweetDeckFast
    [2010-08-09:18:24:07] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-08-09:18:24:07] Application not located
    [2010-08-09:18:24:07] Waiting for user confirmation
    [2010-08-09:18:24:28] User confirmed action: install
    [2010-08-09:18:24:28] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp
    [2010-08-09:18:25:07] native installer creation complete
    [2010-08-09:18:25:07] Starting install
    [2010-08-09:18:25:07] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp
    [2010-08-09:18:25:07] Destination for installed application is C:\Program Files
    [2010-08-09:18:25:08] Beginning install
    [2010-08-09:18:25:08] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp\setup.msi
    [2010-08-09:18:26:05] Execution complete; beginning commit phase
    [2010-08-09:18:26:05] Commit complete
    [2010-08-09:18:26:17] Re-launching application from C:\Program Files\TweetDeck\TweetDeck.exe
    [2010-08-09:18:26:18] starting cleanup of temporary files
    [2010-08-09:18:26:49] application installer exiting
    [2010-08-09:18:27:32] UI SWF load is complete
    [2010-08-09:18:27:35] UI initialized
    [2010-08-09:18:27:38] Begin background update check
    [2010-08-09:18:27:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-09:18:27:53] Background update not available
    [2010-08-09:18:27:54] begin quitting
    [2010-08-17:21:35:49] UI SWF load is complete
    [2010-08-17:21:35:59] UI initialized
    [2010-08-17:21:36:00] Begin background update check
    [2010-08-17:21:36:05] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-27:17:40:22] UI SWF load is complete
    [2010-08-27:17:40:25] UI initialized
    [2010-08-27:17:40:26] Begin background update check
    [2010-08-27:17:40:32] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-27:17:41:57] Background update successfully downloaded
    [2010-08-27:17:41:58] User notified of available background update
    [2010-08-27:17:43:24] User selected immediate install of background update
    [2010-08-27:17:43:24] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-08-27:17:43:29] begin quitting
    [2010-08-27:17:44:25] Performing runtime update
    [2010-08-27:17:44:26] UI SWF load is complete
    [2010-08-27:17:44:29] UI initialized
    [2010-08-27:17:44:29] starting user confirmation
    [2010-08-27:17:44:29] Version of this installer: 2.0.3.13070
    [2010-08-27:17:44:29] Installed version: 2.0.2.12610
    [2010-08-27:17:44:29] Installation type: patchNewer
    [2010-08-27:17:44:47] starting install
    [2010-08-27:17:44:49] Scheduling runtime installation operations
    [2010-08-27:17:44:50] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-08-27:17:44:51] Scheduling an MSI repair operation
    [2010-08-27:17:44:53] Beginning runtime installation
    [2010-08-27:17:44:54] Beginning install
    [2010-08-27:17:44:54] Reinstalling c:\docume~1\tamramb\locals~1\temp\air9.tmp\setup.msi
    [2010-08-27:17:45:26] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\flaF.tmp\temp
    [2010-08-27:17:45:30] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-27:17:45:31] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR9.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-27:17:45:33] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla10.tmp\temp
    [2010-08-27:17:45:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-27:17:45:36] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR9.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-27:17:45:38] Execution complete; beginning commit phase
    [2010-08-27:17:45:38] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\flaF.tmp\temp
    [2010-08-27:17:45:38] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla10.tmp\temp
    [2010-08-27:17:45:38] Commit complete
    [2010-08-27:17:45:38] install complete
    [2010-08-27:17:48:35] begin quitting
    [2010-08-27:18:12:35] UI SWF load is complete
    [2010-08-27:18:12:37] UI initialized
    [2010-08-27:18:12:39] Pingback request completed with HTTP status 200
    [2010-08-27:18:12:39] Begin background update check
    [2010-08-27:18:12:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-27:18:12:41] Background update not available
    [2010-08-27:18:12:41] begin quitting
    [2010-10-20:17:24:08] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_35.3.air
    [2010-10-20:17:24:08] UI SWF load is complete
    [2010-10-20:17:24:09] UI initialized
    [2010-10-20:17:24:10] beginning UI styling
    [2010-10-20:17:24:10] UI styling complete
    [2010-10-20:17:24:10] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1E.tmp
    [2010-10-20:17:24:11] Received HTTP Response Status event
    [2010-10-20:17:24:11] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_35.3.air
    [2010-10-20:17:24:18] Waiting for user confirmation
    [2010-10-20:17:24:52] User confirmed action: install
    [2010-10-20:17:24:52] beginning UI styling
    [2010-10-20:17:24:52] UI styling complete
    [2010-10-20:17:24:52] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1F.tmp
    [2010-10-20:17:25:21] unpackaging/validation is complete
    [2010-10-20:17:25:21] application is bound to this version of the runtime
    [2010-10-20:17:25:21] app id TweetDeckFast
    [2010-10-20:17:25:21] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-10-20:17:25:21] Application not located
    [2010-10-20:17:25:21] Waiting for user confirmation
    [2010-10-20:17:25:34] User confirmed action: install
    [2010-10-20:17:25:34] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp
    [2010-10-20:17:25:36] native installer creation complete
    [2010-10-20:17:25:36] Starting install
    [2010-10-20:17:25:36] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp
    [2010-10-20:17:25:36] Destination for installed application is C:\Program Files
    [2010-10-20:17:25:36] Beginning install
    [2010-10-20:17:25:36] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp\setup.msi
    [2010-10-20:17:25:41] Execution complete; beginning commit phase
    [2010-10-20:17:25:41] Commit complete
    [2010-10-20:17:25:41] Re-launching application from C:\Program Files\TweetDeck\TweetDeck.exe
    [2010-10-20:17:25:42] starting cleanup of temporary files
    [2010-10-20:17:25:44] application installer exiting
    [2010-10-20:17:26:14] UI SWF load is complete
    [2010-10-20:17:26:18] UI initialized
    [2010-10-20:17:26:18] Begin background update check
    [2010-10-20:17:26:18] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-10-20:17:27:16] Background update successfully downloaded
    [2010-10-20:17:27:16] User notified of available background update
    [2010-10-20:17:28:19] User deferred installation of background update
    [2010-10-20:17:28:19] begin quitting
    [2010-10-20:22:01:38] UI SWF load is complete
    [2010-10-20:22:01:41] UI initialized
    [2010-10-20:22:01:41] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-10-20:22:01:44] begin quitting
    [2010-10-20:22:02:08] Performing runtime update
    [2010-10-20:22:02:09] UI SWF load is complete
    [2010-10-20:22:02:12] UI initialized
    [2010-10-20:22:02:12] starting user confirmation
    [2010-10-20:22:02:13] Version of this installer: 2.0.4.13090
    [2010-10-20:22:02:13] Installed version: 2.0.3.13070
    [2010-10-20:22:02:14] Installation type: patchNewer
    [2010-10-20:22:02:19] starting install
    [2010-10-20:22:02:19] Scheduling runtime installation operations
    [2010-10-20:22:02:19] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-10-20:22:02:19] Scheduling an MSI repair operation
    [2010-10-20:22:02:20] Beginning runtime installation
    [2010-10-20:22:02:20] Beginning install
    [2010-10-20:22:02:20] Reinstalling c:\docume~1\tamramb\locals~1\temp\air37.tmp\setup.msi
    [2010-10-20:22:02:43] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3B.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-20:22:02:43] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR37.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-20:22:02:43] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3C.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-20:22:02:43] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR37.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-20:22:02:43] Execution complete; beginning commit phase
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3B.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3C.tmp\temp
    [2010-10-20:22:02:43] Commit complete
    [2010-10-20:22:02:43] install complete
    [2010-10-20:22:02:51] begin quitting
    [2010-10-20:22:02:51] attempting launch of TweetDeck
    [2010-10-20:22:03:43] UI SWF load is complete
    [2010-10-20:22:03:49] UI initialized
    [2010-10-20:22:03:51] Pingback request completed with HTTP status 200
    [2010-10-20:22:03:51] Begin background update check
    [2010-10-20:22:03:52] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-20:22:03:52] Background update not available
    [2010-10-20:22:03:52] begin quitting
    [2010-10-28:09:52:08] UI SWF load is complete
    [2010-10-28:09:52:11] UI initialized
    [2010-10-28:09:52:11] Begin background update check
    [2010-10-28:09:52:12] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-28:09:53:08] Background update successfully downloaded
    [2010-10-28:09:53:08] User notified of available background update
    [2010-10-28:09:55:56] User selected immediate install of background update
    [2010-10-28:09:55:56] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-10-28:09:55:58] begin quitting
    [2010-10-28:09:56:10] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-10-28:09:56:10] Commandline is: -update
    [2010-10-28:09:56:10] Installed runtime (2.0.4.13090) located at c:\Program Files\Common Files\Adobe AIR
    [2010-10-28:09:56:38] Starting runtime update. Updating runtime from version 2.0.4.13090 to version 2.5.0.16600
    [2010-10-28:09:56:38] Installing msi at c:\docume~1\tamramb\locals~1\temp\air12.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2010-10-28:10:00:31] Runtime Installer end with exit code 0
    [2010-10-28:10:24:27] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-10-28:10:24:35] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-10-28:10:24:35] Commandline is: -updatecheck
    [2010-10-28:10:24:35] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-10-28:10:24:37] Performing pingback request
    [2010-10-28:10:24:47] Pingback request completed with HTTP status 200
    [2010-10-28:10:24:47] Starting runtime background update check
    [2010-10-28:10:24:47] Clearing unused background update directory
    [2010-10-28:10:24:50] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-10-28:10:24:50] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-10-28:10:24:52] Runtime update not available
    [2010-10-28:10:24:52] Unpackaging cancelled
    [2010-10-28:10:24:53] Runtime Installer end with exit code 0
    [2010-11-04:11:34:43] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-04:11:34:47] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-04:11:34:47] Commandline is: -updatecheck
    [2010-11-04:11:34:47] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-04:11:34:48] Performing pingback request
    [2010-11-04:11:34:48] Starting runtime background update check
    [2010-11-04:11:34:48] Clearing unused background update directory
    [2010-11-04:11:34:48] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-04:11:34:48] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-04:11:34:49] Runtime update not available
    [2010-11-04:11:34:49] Unpackaging cancelled
    [2010-11-04:11:34:49] Runtime Installer end with exit code 0
    [2010-11-08:15:41:41] Application Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-08:15:41:41] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.36.1
    [2010-11-08:15:41:41] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-08:15:41:41] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-08:15:41:43] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3E.tmp
    [2010-11-08:15:41:46] Application signature verified
    [2010-11-08:15:41:46] Unpackaging/validation complete
    [2010-11-08:15:41:46] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp
    [2010-11-08:15:41:51] Native installation package creation succeeded
    [2010-11-08:15:41:51] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.35.3 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.36.1 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2010-11-08:15:41:51] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp\setup.msi with guid {18436EF4-C98B-B4C3-DF3E-B41918B6BED6}
    [2010-11-08:15:42:13] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2010-11-08:15:42:14] Application Installer end with exit code 0
    [2010-11-11:14:12:59] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:14:13:00] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:14:13:00] Commandline is: -updatecheck
    [2010-11-11:14:13:00] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:14:13:03] Performing pingback request
    [2010-11-11:14:13:03] Starting runtime background update check
    [2010-11-11:14:13:03] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:14:13:03] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:14:13:06] Runtime background update check failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2010-11-11:14:13:06] Runtime Installer end with exit code 0
    [2010-11-11:17:40:52] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:17:40:56] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:17:40:56] Commandline is: -updatecheck
    [2010-11-11:17:40:56] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:17:40:58] Performing pingback request
    [2010-11-11:17:40:58] Starting runtime background update check
    [2010-11-11:17:40:58] Clearing unused background update directory
    [2010-11-11:17:40:59] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:17:40:59] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:17:41:49] Unpackaging complete
    [2010-11-11:17:41:49] Download success
    [2010-11-11:17:41:49] Runtime updated downloaded
    [2010-11-11:17:42:59] User had deferred installing the update
    [2010-11-11:17:42:59] Runtime Installer end with exit code 0
    [2010-11-11:21:14:00] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:14:36] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:21:14:36] Commandline is: -applyupdates "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:14:36] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:21:14:42] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-11:21:14:54] Starting runtime background update installation
    [2010-11-11:21:14:54] Launching subprocess with commandline C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:15:33] Runtime updater successfully launched
    [2010-11-11:21:15:33] Runtime Installer end with exit code 0
    [2010-11-11:21:17:34] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-11:21:17:34] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:17:34] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:21:17:34] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-11:21:18:05] Starting runtime update. Updating runtime from version 2.5.0.16600 to version 2.5.1.17730
    [2010-11-11:21:18:06] Reinstalling c:\docume~1\tamramb\locals~1\temp\air2c.tmp\setup.msi
    [2010-11-12:03:35:34] Launching subprocess with commandline c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-12:03:35:35] Runtime Installer end with exit code 1
    [2010-11-12:04:21:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-12:04:21:51] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-12:04:21:51] Commandline is: -updatecheck
    [2010-11-12:04:21:51] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-12:04:21:53] Performing pingback request
    [2010-11-12:04:21:54] Pingback request completed with HTTP status 200
    [2010-11-12:04:21:54] Starting runtime background update check
    [2010-11-12:04:21:54] Clearing unused background update directory
    [2010-11-12:04:21:55] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-12:04:21:55] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-12:04:21:55] Runtime update not available
    [2010-11-12:04:21:55] Unpackaging cancelled
    [2010-11-12:04:21:55] Runtime Installer end with exit code 0
    [2010-11-19:11:19:12] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-19:11:19:34] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-19:11:19:34] Commandline is: -updatecheck
    [2010-11-19:11:19:34] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-19:11:19:37] Performing pingback request
    [2010-11-19:11:19:37] Starting runtime background update check
    [2010-11-19:11:19:37] Clearing unused background update directory
    [2010-11-19:11:19:37] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-19:11:19:37] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-19:11:19:41] Runtime update not available
    [2010-11-19:11:19:41] Unpackaging cancelled
    [2010-11-19:11:19:41] Runtime Installer end with exit code 0
    [2010-11-26:14:25:52] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-26:14:25:55] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-26:14:25:55] Commandline is: -updatecheck
    [2010-11-26:14:25:55] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-26:14:25:57] Performing pingback request
    [2010-11-26:14:25:57] Starting runtime background update check
    [2010-11-26:14:25:57] Clearing unused background update directory
    [2010-11-26:14:25:57] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-26:14:25:57] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-26:14:25:58] Runtime update not available
    [2010-11-26:14:25:58] Unpackaging cancelled
    [2010-11-26:14:25:58] Runtime Installer end with exit code 0
    [2010-12-03:20:44:53] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-03:20:44:57] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-03:20:44:57] Commandline is: -updatecheck
    [2010-12-03:20:44:57] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-03:20:45:10] Performing pingback request
    [2010-12-03:20:45:10] Starting runtime background update check
    [2010-12-03:20:45:10] Clearing unused background update directory
    [2010-12-03:20:45:11] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-03:20:45:11] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-03:20:45:13] Runtime update not available
    [2010-12-03:20:45:13] Unpackaging cancelled
    [2010-12-03:20:45:13] Runtime Installer end with exit code 0
    [2010-12-13:17:04:46] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-13:17:04:52] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-13:17:04:52] Commandline is: -updatecheck
    [2010-12-13:17:04:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-13:17:04:56] Performing pingback request
    [2010-12-13:17:04:57] Starting runtime background update check
    [2010-12-13:17:04:57] Clearing unused background update directory
    [2010-12-13:17:04:57] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-13:17:04:57] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-13:17:05:00] Runtime update not available
    [2010-12-13:17:05:00] Unpackaging cancelled
    [2010-12-13:17:05:00] Runtime Installer end with exit code 0
    [2010-12-21:10:22:01] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-21:10:22:21] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-21:10:22:21] Commandline is: -updatecheck
    [2010-12-21:10:22:21] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-21:10:22:46] Performing pingback request
    [2010-12-21:10:22:46] Starting runtime background update check
    [2010-12-21:10:22:46] Clearing unused background update directory
    [2010-12-21:10:22:53] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-21:10:22:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-21:10:23:38] Runtime update not available
    [2010-12-21:10:23:38] Unpackaging cancelled
    [2010-12-21:10:23:38] Runtime Installer end with exit code 0
    [2010-12-28:11:57:39] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-28:11:57:40] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-28:11:57:40] Commandline is: -updatecheck
    [2010-12-28:11:57:41] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-28:11:57:43] Performing pingback request
    [2010-12-28:11:57:43] Starting runtime background update check
    [2010-12-28:11:57:43] Clearing unused background update directory
    [2010-12-28:11:57:46] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-28:11:57:46] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-28:11:57:48] Runtime update not available
    [2010-12-28:11:57:48] Unpackaging cancelled
    [2010-12-28:11:57:48] Runtime Installer end with exit code 0
    [2011-01-04:16:53:30] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-04:16:53:31] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-04:16:53:31] Commandline is: -updatecheck
    [2011-01-04:16:53:31] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-04:16:53:33] Performing pingback request
    [2011-01-04:16:53:33] Starting runtime background update check
    [2011-01-04:16:53:33] Clearing unused background update directory
    [2011-01-04:16:53:34] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-04:16:53:34] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-04:16:53:35] Runtime update not available
    [2011-01-04:16:53:35] Unpackaging cancelled
    [2011-01-04:16:53:35] Runtime Installer end with exit code 0
    [2011-01-11:18:38:25] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-11:18:38:32] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-11:18:38:32] Commandline is: -updatecheck
    [2011-01-11:18:38:32] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-11:18:38:42] Performing pingback request
    [2011-01-11:18:38:42] Starting runtime background update check
    [2011-01-11:18:38:42] Clearing unused background update directory
    [2011-01-11:18:38:45] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-11:18:38:45] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-11:18:38:47] Runtime update not available
    [2011-01-11:18:38:47] Unpackaging cancelled
    [2011-01-11:18:38:47] Runtime Installer end with exit code 0
    [2011-01-18:22:45:37] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-18:22:45:47] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-18:22:45:47] Commandline is: -updatecheck
    [2011-01-18:22:45:47] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-18:22:46:01] Performing pingback request
    [2011-01-18:22:46:01] Starting runtime background update check
    [2011-01-18:22:46:01] Clearing unused background update directory
    [2011-01-18:22:46:01] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-18:22:46:01] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-18:22:46:02] Runtime update not available
    [2011-01-18:22:46:02] Unpackaging cancelled
    [2011-01-18:22:46:02] Runtime Installer end with exit code 0
    [2011-01-26:11:06:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-26:11:06:48] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-26:11:06:48] Commandline is: -updatecheck
    [2011-01-26:11:06:48] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-26:11:07:07] Performing pingback request
    [2011-01-26:11:07:08] Starting runtime background update check
    [2011-01-26:11:07:08] Clearing unused background update directory
    [2011-01-26:11:07:09] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-26:11:07:09] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-26:11:07:10] Runtime update not available
    [2011-01-26:11:07:10] Unpackaging cancelled
    [2011-01-26:11:07:10] Runtime Installer end with exit code 0
    [2011-02-04:13:47:49] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-04:13:47:51] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-04:13:47:51] Commandline is: -updatecheck
    [2011-02-04:13:47:51] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-04:13:48:00] Performing pingback request
    [2011-02-04:13:48:00] Starting runtime background update check
    [2011-02-04:13:48:00] Clearing unused background update directory
    [2011-02-04:13:48:05] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-04:13:48:05] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-04:13:48:07] Runtime update not available
    [2011-02-04:13:48:07] Unpackaging cancelled
    [2011-02-04:13:48:07] Runtime Installer end with exit code 0
    [2011-02-09:11:14:43] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-09:11:14:43] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.37.2
    [2011-02-09:11:14:43] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-09:11:14:44] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2011-02-09:11:14:46] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1C.tmp
    [2011-02-09:11:14:50] Application signature verified
    [2011-02-09:11:14:50] Unpackaging/validation complete
    [2011-02-09:11:14:50] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1D.tmp
    [2011-02-09:11:14:55] Native installation package creation succeeded
    [2011-02-09:11:14:55] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.36.1 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.2 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2011-02-09:11:14:55] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1D.tmp\setup.msi with guid {D3EA25C7-485B-5245-780A-B997DED97161}
    [2011-02-09:11:15:19] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2011-02-09:11:15:27] Application Installer end with exit code 0
    [2011-02-13:23:23:10] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-13:23:23:12] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-13:23:23:12] Commandline is: -updatecheck
    [2011-02-13:23:23:12] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-13:23:23:15] Performing pingback request
    [2011-02-13:23:23:15] Starting runtime background update check
    [2011-02-13:23:23:15] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-13:23:23:15] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-13:23:23:16] Runtime update not available
    [2011-02-13:23:23:16] Unpackaging cancelled
    [2011-02-13:23:23:16] Runtime Installer end with exit code 0
    [2011-02-21:14:07:13] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-21:14:07:24] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-21:14:07:24] Commandline is: -updatecheck
    [2011-02-21:14:07:24] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-21:14:07:29] Performing pingback request
    [2011-02-21:14:07:29] Starting runtime background update check
    [2011-02-21:14:07:29] Clearing unused background update directory
    [2011-02-21:14:07:31] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-21:14:07:31] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-21:14:07:35] Runtime update not available
    [2011-02-21:14:07:35] Unpackaging cancelled
    [2011-02-21:14:07:35] Runtime Installer end with exit code 0
    [2011-02-27:18:48:52] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-27:18:48:52] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.37.5
    [2011-02-27:18:48:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-27:18:48:52] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2011-02-27:18:48:54] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla34.tmp
    [2011-02-27:18:48:57] Application signature verified
    [2011-02-27:18:48:57] Unpackaging/validation complete
    [2011-02-27:18:48:57] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp
    [2011-02-27:18:48:59] Native installation package creation succeeded
    [2011-02-27:18:48:59] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.2 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.5 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2011-02-27:18:48:59] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp\setup.msi with guid {564D71D4-6BFD-E2EA-9EBA-0719178B8D7B}
    [2011-02-27:18:49:47] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2011-02-27:18:49:52] Application Installer end with exit code 0
    [2011-02-28:21:17:23] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-28:21:17:26] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-28:21:17:26] Commandline is: -updatecheck
    [2011-02-28:21:17:26] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-28:21:17:31] Performing pingback request
    [2011-02-28:21:17:32] Starting runtime background update check
    [2011-02-28:21:17:33] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-28:21:17:33] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-28:21:17:34] Runtime update not available
    [2011-02-28:21:17:34] Unpackaging cancelled
    [2011-02-28:21:17:34] Runtime Installer end with exit code 0
    [2011-03-09:03:45:21] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-09:03:45:59] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-09:03:45:59] Commandline is: -updatecheck
    [2011-03-09:03:45:59] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-09:03:46:20] Performing pingback request
    [2011-03-09:03:46:20] Starting runtime background update check
    [2011-03-09:03:46:20] Clearing unused background update directory
    [2011-03-09:03:46:31] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-09:03:46:31] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-03-09:03:46:53] Runtime update not available
    [2011-03-09:03:46:53] Unpackaging cancelled
    [2011-03-09:03:46:56] Runtime Installer end with exit code 0
    [2011-03-17:19:30:41] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-17:19:30:49] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-17:19:30:49] Commandline is: -updatecheck
    [2011-03-17:19:30:49] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-17:19:30:52] Performing pingback request
    [2011-03-17:19:30:52] Startin

    Hi,
    I'm sorry you're running into problems with the AIR installer.  Could you try out the script that I attached to this post and let me know if it helps you?
    Thanks,
    Chris

  • FIM Export Fails - Fault Reason: The endpoint could not dispatch the request. FIM Account Issue?

    Hi,
     I have 3 fim servers:
    fimportal - has fim service & portal running (uses account service.fim & service.sharepoint)
    fimsync - has synchronisation service & synchronisation DB (uses account service.fimsync)
    fimsql - holds portal DB for server fimportal
     I've created an AD MA, FIM MA and an inbound AD sync rule. On my FIM MA I've used account svc-fim (i.e. the account I've used to install FIM). This is not the same account that runs the synchronisation service on fimsync (account svc-fimsync is used
    for this).
     I've ran a FIM MA import and full sync without issue (I can see my built in, admin account and the sync rule brought into the metaverse). When I do an export I receive an error as shown below.
    What I'm not sure about is if it's because I'm using the wrong account for the FIM MA. If so, which account should I use and what's the best way to change my config (without a total reinstall)?
    I've selected domain (as a text value), accountname and objectsid in my attribute flow, but I may have configured something wrong here.
    Thanks
    Fault Reason: The endpoint could not dispatch the request.\r\n\r\nFault Details: <DispatchRequestFailures xmlns="http://schemas.microsoft.com/2006/11/ResourceManagement" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"><DispatchRequestAdministratorDetails><FailureMessage>Exception:
    Other 
    Stack Trace: Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---&gt; System.Data.SqlClient.SqlException: Procedure or function 'GetDomainConfigurationIdentifiersFromDomain' expects parameter '@domainName',
    which was not supplied.
       at Microsoft.ResourceManagement.Utilities.ExceptionManager.ThrowException(Exception exception)
       at Microsoft.ResourceManagement.Data.Exception.DataAccessExceptionManager.ThrowException(SqlException innerException, TransactionAndConnectionScope scope)
       at Microsoft.ResourceManagement.Data.DataAccess.GetDomainConfigurationIdentifiersFromDomain(String domainName)
       at Microsoft.ResourceManagement.ActionProcessor.DomainConfigurationActionProcessor.AddDomainConfigurationFromDomain(CreateRequestParameter domainNameParameter, RequestType request)
       at Microsoft.ResourceManagement.ActionProcessor.DomainConfigurationActionProcessor.DoRequestCreationPreProcessByAttribute(RequestType request)
       at Microsoft.ResourceManagement.ActionProcessor.ActionDispatcher.DoRequestCreationPreProcessByAttribute(RequestType request)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean
    isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier, UniqueIdentifier requestContextIdentifier, Boolean maintenanceMode)
       at Microsoft.ResourceManagement.WebServices.ResourceManagementService.Put(Message request)
       --- End of inner exception stack trace ---</FailureMessage><DispatchRequestFailureSource>Other</DispatchRequestFailureSource><AdditionalTextDetails>Request could not be dispatched.</AdditionalTextDetails></DispatchRequestAdministratorDetails><CorrelationId>0c7141ca-63a2-42ae-92c3-a0c95de0d940</CorrelationId></DispatchRequestFailures>
    Below shows separate MA account and separate FIM Sync Account
    IT Support/Everything

    Hi Tomek,
     Apologies for the delay, been a busy festive period :-)
    The account in question with the export flow error is my admin account that I used during installation (where prompted I did enter service account credentials).
    Searching the FIM CS on the source object details show all attributes present (including domain), but looking at the export attribute flow shows a final value of deleted! See below.
     I'm following the TechNet guide:
    http://technet.microsoft.com/en-us/library/ff686264(v=ws.10).aspx and hit the error with the FIM MA export run profile when I run the below steps:
    FIM MA - Full import
    FIM MA - Full synchronization
    FIM MA - Export
    FIM MA - Delta import
    AD MA - Fullll import
    AD MA - Full synchronization
    Initially my admin account was not in the selected containers as configured in the AD MA, however I've now ran that and re-ran the sync, which resulted in my test user being provisioned in the portal. My admin account is still not provisioned - I now get
    2 export errors, 1 as before complaining of missing domain and another which complains of my admin account being a duplicate entry.
    Please let me know if anything comes to mind.
    Thanks
    IT Support/Everything

  • I need to upgrade my first generation Macbook Air to Lion OS x10. I need to install software that requires 10.7 also a java update that requires 10.7. I am currently on Snow Leopard 10.6.8 and my macbook Air 1.1 will not go up to Mountain Lion. The lion s

    I need to upgrade my first generation Macbook Air 1,1 to Lion OS x10. I need to install other  software that requires 10.7 also a java update that requires 10.7. I am currently on Snow Leopard 10.6.8 and my macbook Air 1.1 will not go up to Mountain Lion. The Lion software update 10.7 is no longer available from the store or downloads.
    Where do I get this?
    It was only released a couple of months ago.
    I really feel disinfranchised already by not being able to upgrade and keep up with other software needs but to not allow me to update to my full capacity is really ridiculous.

    @Jennacide wrote:
    It was only released a couple of months ago.
    OS Lion was released 16 months ago...  in July 2011.
    Lion Tech Specs  >  http://support.apple.com/kb/SP629
    To upgrade to Lion...
    Contact Apple in your Country to Purchase a Snow Leopard Disc...
    http://support.apple.com/kb/HE57
    In the US...
    1-800-MY-APPLE or 1-800-676-2775
    After the Successful Install, run Software Update to get the latest updates...
    Be sure to make a Backup of your Current System Before Upgrading...
    Also... Check here for compatibility of 3rd party Software you may be using...
    http://roaringapps.com/apps:table

  • How to fix the constant noise in the left corner of the Macbook Air which is connected not with a fan?

    How to fix the constant noise in the left corner of the Macbook Air which is connected not with a fan?

    Unfortunately if there are various colours across the screen then you have broken the LCD Screen and it will need replacing. If the colours change when you press the area lightly then this is another symptom that you've broken the screen.
    Sorry to give the bad news!

Maybe you are looking for

  • Blue screen fatal error messages - laptop always crashes and now won't even let me restore

    My dv6920ea laptop has developed a fault and keeps crashing with blue screen errors, such as "IRQL_NOT_LESS_OR_EQUAL". The problem has become so bad that it happens everytime I turn the laptop on. The laptop ran "Windows memory diagnostic tool" which

  • Wrong SID in JDBC URL

    Hi all, I'm developing a java program in OAF context to generate a pdf from a xdo data template and template. this is already working, there is only one issue. The DataProcessor needs a connection, therefore I've specified hardcoded a JDBC URL. Conne

  • CCS- No Authorization Error

    Hi, We are trying to use Contact center simulator and IC Webclient on CRM 2007. I have done the settings and we are able to login into the Home page of BCB but on clicking the link Settings it shows following details: BCB/ICI version: 3.00.64507 SAP

  • CS4 shows faded image in monitor compared to what LR & Bridge shows.

    I processed Canon RAW files using LR 2.3, generate jpeg files and view these Jpeg files in Bridge CS4.  Both LR and Bridge shows brilliant colors, but when I open the same files in Photoshop CS4. the images looks faded.  Of course, I view the images

  • Ignore Folder(s) when refreshing music library?

    I have the e71x and I was wondering if there was a way to control which folder the music player searches through... I sync using wmp and it saves my music to E:\Music and I only really want it to refresh the list by looking in that folder.. or else i