AIR app not running on Citrix

We have delivered an AIR app to a client, and they are trying to run it on a Citrix XenApp terminal server.  Part of the app makes use of the AIR browser and sessions.  When the Citrix user is of sufficient privilidge (windows user), the app runs fine.  When they attempt run the AIR app as an anonymous citrix user, it fails.  The user cannot login to a page (presented inside the AIR browser).  Any ideas?
This discussion (http://forums.adobe.com/message/208488#208488) says that the AIR browser stores cookies and cache in the "Temporary Internet Files" directory, like IE does.  Is this true?  If the Citrix user did not have permission to write to that directory, could that cause problems?  Does the AIR browser need to be able to write anything to the file system?  Will the AIR browser try to store session cookies on the filesystem, or do they just stay in memory?  I have to assume that this Citirx guest user has no file system priviledges, so we may need to loosen that to get the app to work.  Any pointers would be appreciated.
Thanks,
Bryan

Did you test in the Simulator for 2.1?
I tested it in the Simulator for 2.1 and it works fine.
HOWEVER - my app doesn't work in in 2.1 for various people either. (Two emailed reports, which means probably a lot more are getting hit by this and not emailing)
And I really don't use any undocumented APIs. I do set a transform on a view, however.
My guess is they fixed a bug to do with transforms and views, which broke my App in 2.1. Sadly, this fix doesn't seem to be on the Simulator.
So I can't verify unless I update my iPod Touch to 2.1 .. which I can't do because iTunes says my version is apparently up to date for 2.0.
Crazy. Gotta find a way to get 2.1 on my iPod touch. Any suggestions?

Similar Messages

  • Air apps not working on Vista 64 bit since 1.5

    The Adobe Air 1.5 update went fine on my Vista 64 bit system,
    both apps (Thwirl and Spaz) worked fine. Then both apps released an
    update and they crash when attempting to update. Download manually
    the .air file and it can't find the software to open the file and
    will not install. Uninstall Air, reinstall Air. Go to Adobe's Air
    site and try to install any Air app, not a single one will install.
    Air shows up in Add/Remove Programs but now I cannot use a single
    Air application. Have installed (as administrator) and unstalled
    Air a few times, same result. The result I get when I try to
    install something from the Adobe site:
    "Something went wrong trying to install this application.
    Please install the latest version of Adobe Air"

    Unfortunately I can only generate a log for the Air install
    itself. Once Air 1.5 is installed and I try to install any Air
    Application, it fails immediately with the error message in my
    initial post. I created the .airappinstall.log following the
    procedures in kb403123 and echo was on when I went to the Thwirl
    site and clicked "Install Thwirl" and the error message comes up
    instantly and no data is added to .airappinstall.log. And when I
    download the .air file manually Windows cannot find Air at all to
    associate with the .air file. Here is the text from the fresh Air
    install I performed right before trying to install Thwirl (taken
    from the .airinstall.log file):
    Performing runtime install
    UI SWF load is complete
    UI initialized
    starting user confirmation
    Installation type: new
    starting elevated install
    subinstaller: starting install
    subinstaller: Scheduling runtime installation operations
    subinstaller: uninstall scheduled for 1.0.5, 1.0.4
    subinstaller: Installed Product GUID: is same:false
    subinstaller: Beginning runtime installation
    subinstaller: Beginning install
    subinstaller: Installing
    c:\users\brian\appdata\local\temp\air3489.tmp\setup.msi
    subinstaller: Execution complete; beginning commit phase
    subinstaller: Commit complete
    subinstaller: install complete
    subinstaller: begin quitting
    Elevated install completed
    begin quitting

  • [AIR] Installed App not running NativeProcess

    I have an AIR app. that is using NativeProcess to run cmd.exe, which in turn runs a .bat file. It works as designed/intended when running in the Flex IDE. However, upon installing and running the AIR app, the process is now longer getting called. From what I can tell, it seems to be stopping when I call nativeProcess.start(npsi). That is no code after this line gets executed.
    Any suggestions on how to resolve this issue?
    Thanks for  any and all replies.
    Below is my code:
         <fx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   import mx.events.FlexEvent;
                   protected var npsi:NativeProcessStartupInfo;
                   protected var nativeProcess:NativeProcess;
                   protected var file:File = new File("C:\\Windows\\System32\\cmd.exe");
                   protected var args:Vector.<String> = new Vector.<String>;
                   protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
                        args.push('filelisting.bat')
                        npsi = new NativeProcessStartupInfo();
                        npsi.arguments = args;
                        npsi.executable = file;
                        npsi.workingDirectory = File.applicationDirectory.resolvePath("c:\\documents and settings\\DefaultUser\\desktop\\");
                        nativeProcess = new NativeProcess();
                        nativeProcess.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA,onStandardOutputData);
                        nativeProcess.addEventListener(ProgressEvent.STANDARD_ERROR_DATA, onError);
                        nativeProcess.addEventListener(NativeProcessExitEvent.EXIT, exitHandler);
                        nativeProcess.start(npsi); // code no longer is executed when running as an APP;
                        nativeProcess.standardInput.writeUTFBytes(args + "\n");
                   protected function exitHandler(event:NativeProcessExitEvent):void{
                        Alert.show("Execution Complete");
                        nativeProcess.exit()
                   private function onError(event:ProgressEvent):void {
                        var process:NativeProcess = event.target as NativeProcess;
                        var data:String = process.standardError.readUTFBytes(process.standardError.bytesAvailable);
                        lbl.text += data;
                   private function onStandardOutputData(event:ProgressEvent):void
                        var process:NativeProcess = event.target as NativeProcess;
                        var data:String = process.standardOutput.readUTFBytes(process.standardOutput.bytesAvailable);
                        lbl.text += data;
                        !nativeProcess.running
                             nativeProcess.closeInput()
              ]]>
         </fx:Script>

    I have tried this on both an XP and Windows 7 machine, both with the same result. Once the AIR app is installed it no longer executes the native process.

  • How to get Adobe Air-apps to run *properly*? (Voddler ecpecially)

    First: I am running AMD64, and have installed the bin32-adob-air from AUR.
    The problem is, this does not work as it should. Air apps are never "installed" like they would be in Windows, or Ubuntu with the adobe-air from adobe installed. This causes problems with remembering configs and storing data between instances. Wimp, t.ex. will never remember my password, now matter how many times I check the remember password-box. And When running VOddler it just won't find the config file.
    I am trying to run Voddler in linux now, following this. But it won't work.
    I just get an "error reading config file" message when starting it using the adobe-air command (ie. the script from the package. Thinking the problem might be caused by the script running air apps from a temp dir, i aslo tried to run
    [gert@blad opt]$ /opt/adobe-air-sdk/bin/adl -nodebug /opt/airapps/VoddlerPlayer/META-INF/AIR/application.xml /opt/airapps/VoddlerPlayer
    after unpacking the Voddler Files there, but no luck.
    I see that there are a newer version of Voddler out now, and I will try that, but I'd appreciate any help with this spesific issue.
    Also, I would like to know if there is any way to get the "full Air experience" where you jut click-and go, and can install Air-apps the simple, proper way "everybody else" does it. Cause Air right now is a major hassle. Is there any chance of getting the Adobe-Air installer from Adoe work on Arch, or at least get a similar result? Integrated in the system, detected in the browser on  webpages etc.
    Last edited by naguz (2010-05-15 17:01:25)

    Tried again with the command taken from firefox appended to the script (instead of §1 §2 etc.) and got:
    (adl:17512): Gtk-WARNING **: Kunne ikke finne temamotor i module_path: «murrine».
    (adl:17512): Gtk-WARNING **: Kunne ikke finne temamotor i module_path: «murrine».
    Gtk-Message: Failed to load module "gnomesegvhandler": libgnomesegvhandler.so: cannot open shared object file: Ingen slik fil eller filkatalog
    Error #2032
    http://api.voddler.com/vnet/index/login-token
    Parameter: version:2
    Parameter: token:3c034c484e3ed6217ec0b4b6a6cd01c9
    Response received
    http://api.voddler.com/vnet/index/pre-movie-request
    Parameter: movie:2721821284152452737
    Parameter: session:952b4840d0a91e896c210622ee83333a_0c965a262382ad33a9479ebfaddf9a3d
    Parameter: crid:2721821284152752803
    Parameter: version:2
    Response received
    PreMovieResult: [object Object]
    movieID: 2721821284152452737
    MOVIEREQUEST: false movieModel.resumeTime: 0
    http://api.voddler.com/vnet/index/movie-request
    Parameter: movie:2721821284152452737
    Parameter: session:952b4840d0a91e896c210622ee83333a_0c965a262382ad33a9479ebfaddf9a3d
    Parameter: version:2
    Parameter: crid:2721821284152752803
    Parameter: resume:0
    Response received
    Adding to playlist url: 0p000001000_e000335_n0017_s0318_he3052b084510fe31419083eb165aa4bc_00000000000000000000000000000000_d59845ff23b2b6f22d3f3ee9020ab34af_t02
    Logg error
    (Object)#0
    clientCode = 30
    clientVersion = "3.10.1680"
    ctxId = ""
    errorCode = 1000
    extra = "Token login result triggered"
    os = "Linux"
    userId = "'2721821230480292729'"
    vnetVersion = "5522"
    DRM check...
    ReferenceError: Error #1069
    movieMetaDataReceived: 2004
    NetStream.Play.Reset
    NetStream.Play.Start
    Voddler.Open.Done
    Main movie metaData received
    DRM Fatal Error!
    Logg error
    (Object)#0
    clientCode = 30
    clientVersion = "3.10.1680"
    ctxId = ""
    errorCode = 7744
    extra = "General Error: 7744"
    os = "Linux"
    userId = "'2721821230480292729'"
    vnetVersion = "5522"
    ReferenceError: Error #1069
    It errors out after the Voddler window has been "Rerwinding the tape"  for about 10 secs.
    EDIT: I moved my voddler folder to /opt/airapps so I could use your file without any edits to rule out typos.
    Now, the voddler player starts from firefox in wine. But I immediately also get the "Oops, we noticed you didn't watch the whole movie"-window pops out at the same time, and i get a similar error as above.
    DRM check...
    ReferenceError: Error #1069
    movieMetaDataReceived: 2008
    NetStream.Play.Reset
    NetStream.Play.Start
    Voddler.Open.Done
    Main movie metaData received
    DRM Fatal Error!
    Logg error
    (Object)#0
    clientCode = 30
    clientVersion = "3.10.1680"
    ctxId = ""
    errorCode = 7744
    extra = "General Error: 7744"
    os = "Linux"
    userId = "'2721821230480292729'"
    vnetVersion = "5522"
    ReferenceError: Error #1069
    I guess voddler cancels the DRM "lease" as soon as the error box pos up, giving me this question. Seems Firefox doesn't communicate properly with the air-app. Or something else I don't get. complete output from firefox run: pastebin
    Last edited by naguz (2011-01-11 22:32:16)

  • Allow chromeless AIR app to run off top of screen

    I'm creating an AIR app with no chrome.
    The user moves it by draging the visible contents (via nativeWindow.startMove();)
    AIR is not allowing the user to drag the the top of the app above the top edge of the screen.
    This would make sense if I only had a title bar to get the window back with, but I'm not using one.
    Is there a way to allow the top of the app to run off the top of the screen?
    Currently Allowed
    Would like to do this
       top of screen
                                   +-----------------------+
                                   |                         |
                                   |                         |
                                   |                         |
                                   |                         |
                                   |                         |
    invisible chrome--->   |                         |
                                   |                         |
    visible                      |          ++++       |
    dragable area          -+--> ++++++++   |
                                   |      ++++++++   |
                                   |          ++++       |
                                   |                         |
                                   +-----------------------+
                                   +------------------------+
      top of screen          |                         |
    -------------------------------+-----------------------+---
                                   |                         |
                                   |                         |
                                   |                         |
    invisible chrome--->   |                         |
                                   |                         |
    visible                      |          ++++       |
    dragable area          -+--> ++++++++   |
                                   |      ++++++++   |
                                   |          ++++       |
                                   |                         |
                                   +-----------------------+

    If anyone ever tried and realized there's positively no way to achieve this, please let me know.
    Thanks
    Sarah

  • No Adobe air app will run Only Flash Web browser....

    So I have re-installed Flash Builder So when I try and run a Adobe air app from the Flash Builder It brings up a prompt everytime saying - If the program is already running, close it before attempting to run. When I kill the Adobe Air debugger in the Task manager it pops up again saying If the program is already running, close it before attempting to run.
    After waiting a few moments from trying again I get a message: Unable to connect to the Application to fetch profile data. Please try profiling the application again.
    With Flash based - web browser apps - they run fine with no issue. How ever its only adobe air - desktop apps that run this way. This is the third time I have installed FB 4.5 on Windows 7 64 bit. last night it was all woprking fine I was able to debug my Flash Application and everything was working  - it has been doing this all day.

    I had the same issue suddenly today
    After hours of scratching my head - and just before re-installing FlashBuilder 4.5 - I found this suggestion
    I had an entry in the "mm.cfg" file:
    PreloadSWF=C:\Users\<USERNAME>\AppData\Roaming\Mozilla\Firefox\Profiles\9us94hs0.default\e xtensions\[email protected]\chrome\content\flashfirebug\flashfirebug.swf
    - I deleted the line and it now works
    ---- aaarrrrggghhh - wasted time
    thanks

  • Convesations App not running on E75

    Hi I have installed the conversations app on my E75 but it is not running.  Pls advise on how to get it to work/work around!

    Did you test in the Simulator for 2.1?
    I tested it in the Simulator for 2.1 and it works fine.
    HOWEVER - my app doesn't work in in 2.1 for various people either. (Two emailed reports, which means probably a lot more are getting hit by this and not emailing)
    And I really don't use any undocumented APIs. I do set a transform on a view, however.
    My guess is they fixed a bug to do with transforms and views, which broke my App in 2.1. Sadly, this fix doesn't seem to be on the Simulator.
    So I can't verify unless I update my iPod Touch to 2.1 .. which I can't do because iTunes says my version is apparently up to date for 2.0.
    Crazy. Gotta find a way to get 2.1 on my iPod touch. Any suggestions?

  • An AIR app to run a project fullscreen (alpha)

    Hi,
    I made this small AIR application to display a Catalyst project in fullscreen.
    It s making the code very crappy and the look is crap too. Anyway, to my mind, this is just to show that Flex can produce resizable application ...
    An example here ---> http://peopleinaction.free.fr/catalyst/resizable/Prototype.html
    The AIR application is attached to this thread.
    Use :
    - create an empty Flash Builder project
    - run the AIR app
    - put the path to your Catalyst project (FXP file)
    - put the path your new Flash Builder project
    - on the AIR app, click on "Import Catalyst changes"
    - from the Flash Builder project, launch the application called "Prototype.mxml" in the "src" directory
    - from your running project, click on the checkbox in the top-right corner to disable the fullscreen mode

    Hi,
    I moved this Air application to the blog of my enterprise : http://blog.piaction.com/2009/08/catalyst-prototype-fullscreen/lang/en/
    And now the prototype can fit to the browser's size AND be displayed in fullscreen.
    It's rough but this is cool for client presentation

  • IOS 8 beta - Air apps not starting on iOS8

    Hi there, I had some old apps released using AIR sdk 3.4 back in Sep 2012, and because they were working fine, I never updated with newer AIR sdks.
    Today I installed iOS 8 beta on my ipad mini and tried out my apps and all the Air apps are not starting at all, just blank black screen.
    On the console this is the message:
    Jun 30 21:41:14 KHUNDAGAs-iPad com.apple.xpc.launchd[1] (UIKitApplication:net.asuult.radio969[0xaac8][414]) <Notice>: Service exited due to signal: Killed: 9
    Jun 30 21:41:14 KHUNDAGAs-iPad SpringBoard[43] <Warning>: Application 'UIKitApplication:net.asuult.radio969[0xaac8]' quit via signal.
    I wonder, is it because my Air sdk used is older, 3.4, or are there any other issues about iOS 8 that I am not aware of?

    Hi,
    Yes, there have been significant differences since we released AIR SDK 3.4, we recommend try building your app with latest AIR SDK (14.0.0.110) and see if that solves the problem.
    -Thanks
    Pahup

  • [Flash CS5.5 / Air 2.6] Movieclips not showing when .air app is run on Mac

    Hello,
    I created an application in Flash CS5.5 using Adobe Air 2.6. When I test the app on my computer (where it was written) everything works fine. When I publish the application and run the .AIR on my computer everything works fine as well. The issues comes about when I attempt to install and run my AIR application on a Mac operating system. In this case when the application runs some graphics are visible while some aren't. Some movieclips/buttons are visible while others aren't. One example of this is the buttons. None of the buttons in the entire application are visible. When the user clicks the area where the button should be the button click event is fired and the app acts accordingly (i.e. the main menu button which can't be seen still sends the user to the main menu). What could be the problem?
    I had thought of just converting the application to strictly Flash without AIR but I require AIR for the file system api as well as a couple other api components.
    Thank you in advance,
    Noah

    Hi Noah,
    I don't think I've run across this before.  I'd be willing to give it a try on my system if you'd like (you can email me at [email protected]).  Though I suspect this is a project specific issue, it also can't hurt to open this as a new bug over at bugbase.adobe.com.
    Chris

  • NAL apps not showing in citrix unless an admin is logged in

    We have got 3 citrix server publishing a desktop. They are using Metaframe XPe feture release 3 sp4 on win2k.
    The problem we are having is that unless an admin is loged onto each server the users don't get NAL icons. We use the NALEXPLD to deliver the apps. If I logon to a server as a user and manualy run NALEXPLD nothing hapends. There are no errors. As soon as an admin is loged onto that server the user can run nalexpld and the icons are there.
    This is not a big problem but it meas leaving an admin loged in all the time on every server. It also means tha twe can't schedual reboots of the servers as when users connect they don't get icons untill an admin is loged in.

    davidleader,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Adobe AIR apps not installing

    I have Vista Ultimate 64-bit with SP2 and I am having the issue of not being able to install any Adobe AIR applications. When I go to say install Tweetdeck by hitting the install button, all I get is the prompt that something went wrong with installing the application. This happens in Firefox, Safari, Internet Explorer, and Opera. The only way that I can get it to install was to uninstall AIR then click the download/install app of the application where it then automatically installs AIR. However even after the install, when I go to another AIR application page to install, it will prompt me with the same message... help?

    Having the same problem myself over on OS X; unfortunately for the life of me I cannot find an answer to the problem...

  • Issue getting a Adobe Air app to run.

    I'm trying to run a app called Finetune, and sense it wouldn't run from shortcut so I copied and paste its command into terminal and it had this to say:
    Code:
    ME:~$ '/opt/Finetune'/'FinetuneDesktop'/bin/'FinetuneDesktop'
    Gtk-Message: Failed to load module "canberra-gtk-module": /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so: wrong ELF class: ELFCLASS64
    The module is installed and for the fun of it I attempted to use getlib on the command (probably did it wrong too):
    Code:
    ME:~$ getlibs '/opt/Finetune'/'FinetuneDesktop'/bin/'FinetuneDesktop'
    This application isn't missing any dependencies
    Any thoughts?
    I would like to add I am using Ubuntu 9.04 (Jaunty) 64bit and have posted this issue on the Ubuntu Community forums, thus far no luck...Although finetune's site seems to reconize that Finetune Player is installed it just won't launch.

    Since this is a development question related to installing software not directly from the App store, I suggest you post this in the developer forum here:https://discussions.apple.com/community/developer_forums

  • Air Apps Not Downloading

    Any applications that I try to download wont. It says I need adobe air installed to download them. I Do have it installed but same message over and over. Have uninstalled it re-installed it and still the same. Working on Vista with SP1  Thanks in advance.

    I just noticed that when I go my control panel programs adobe air is there installed but when I go to my adobe folder in prgrams hard drive its not listed there?? So its like its installed but not fully maybe? Strange. *** Okay, I uninstalled then clikced on the app I wanted and yes, it installed air and then the app. Awesome!!!! Thanks!

  • Dreamweaver will not run on Citrix

    We have been using Dreamweaver on a Citrix. Now we are gettting the following when running the application:
    error:DreamWeaver error 0xc06d007e
    If I connect to the server locally and run it, I have no issue.
    I believe the error started after running updates on the Citrix enviroment.
    I found these 2 articles:
    http://www.brianmadden.com/forums/t/31329.aspx
    http://support.citrix.com/article/CTX115637
    The first suggest setting a hex value of 0 however that did not resolve the issue. I wonder if I should be using one of the other values? Anyone have any thoughts? I did find a setting for powerpoint in the registry and tried that setting as well. That did not work.
    Anyone with thoughts on this?

    Thinkpad 1200? not a T series?
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

Maybe you are looking for