StageWebView does not display a https website with captive runtime library on Android

Hi,
I'm working on a flex app for tablets (both iOS and Android) and it does not display a particular https website in a StageWebView. The strange thing is, that this issue happens only with this url (required for Google OAuth) and if I deploy the app with a captive air runtime library.
I see the below stack trace in the system logs:
W/System.err(26027): java.lang.NullPointerException
W/System.err(26027):    at java.io.File.fixSlashes(File.java:185)
W/System.err(26027):    at java.io.File.<init>(File.java:134)
W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.getX509TrustManagerFactory(JavaTrustStoreHelper.java:8 1)
W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.getX509TrustManager(JavaTrustStoreHelper.java:110)
W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.enumerateRootCAs(JavaTrustStoreHelper.java:195)
W/System.err(26027):    at dalvik.system.NativeStart.run(Native Method)
If I deploy the same app with a shared air runtime library and no code change at all, there's no issue at all. Also no problems while debugging or executing from Flash Builder on the device.
The issue happens only with this Google URL, it's all okay with Facebook's auth url (https://www.facebook.com/dialog/oauth).
The device is a Samsung Galaxy Tab2 10.1 with Ice Cream Sandwich (Android 4.0) on it.
I would appreciate any idea with this issue.
Thanks,
Gabor

Updating the AIR SDK from 3.1 to 3.4 has resolved the issue.
Too bad that this needs to be done manually as described here: http://www.flashdeveloper.co/post/10985842021/overlay-adobe-air-32-in-flash-builder-46
Many thanks for the hint, Pata.
Regards,
Gabor

Similar Messages

  • Advert does not display in Virginmedia Homepage with IE9

    Flashplayer is installed and seems to be working but in Virginmedia.com Homepage there is a blank space where there should be an advert using IE9. Using Firefox the advert displays as it should. If I open Ancestry.co.uk in IE9 I get one of those yellow warning bars telling me "Add-on for this web site failed to run" and once again there is a blank space where there should be an advert that again displays as it should in Firefox.
    The odd thing is that Flashplayer seems to be working and is enabled in Manage Add-ons. I really don't want to have to use Firefox and all my settings in Internet Options seem to be OK. (My daughter doesn't have any problems with her computer and we compared settings that seem to be the same).
    Could this be a Flashplayer problem or does anyone have any suggestions please?

    Hi Judesman, I'm late getting on the Forum today. Are you saying that there are that many addons from SpywareBlaster in your browser?
    I have researched SpywareBlaster and have a very negative opinion on it. It is very intrusive and would never have it on my system nor recommend it to anyone.
    Microsoft Security Essentials is a free Anti-Virus and Anti-Spyware program. It does not install any addons into the browser and is very light on resources and easy to use. It does not contain a Firewall, but Windows Firewall works well.
    I would go here and download it but SAVE it to your Desktop.
    http://www.microsoft.com/en-us/security_essentials/default.aspx
    Then I would go to this website which is very good and follow the procedures to Uninstall SpywareBlaster.
    When it is Uninstalled, then Reboot(restart) your computer.
    http://www.bleepingcomputer.com/uninstall/2208/SpywareBlaster-v3.5.1.html
    Then I would Close all browser windows, Run to Install MSE(Microsoft Security Essentials) when it is finished Installing I think it will update and run a scan. If not, you can do that from the Home page.
    This will give you good protection along with your IE browser.
    If you have any questions, let me know. Keep in mind that this is just a suggestion on my part. I use MSE and it has been able to prevent malware and also removing it.
    Thanks,
    eidnolb

  • Item does not display in correct position with TileLayout

    Please take a look at below coding. If I choose Frank and click button “age<5", the damn Frank stays still rather than the first column.
    What else should I do after refreshing the data list?
    Best Regards,
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.Sort;
                                  protected function button1_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            list.filterFunction = f1;
                                            list.refresh();
                                  protected function button2_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            list.filterFunction = f2;
                                            list.refresh();
                                  private function f1(item:Object):Boolean
                                            var i:int = int(item.age);
                                            return i<20;
                                  private function f2(item:Object):Boolean
                                            var i:int = int(item.age);
                                            return i>5;
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
                        <s:ArrayCollection id="list">
                                  <fx:Object name="April" age="1"  sex="male" />
                                  <fx:Object name="Brown" age="2"  sex="male" />
                                  <fx:Object name="Cindy" age="3"  sex="male" />
                                  <fx:Object name="Daren" age="4"  sex="male" />
                                  <fx:Object name="Emily" age="5"  sex="male" />
                                  <fx:Object name="Frank" age="6"  sex="male" />
                                  <fx:Object name="Green" age="7"  sex="male" />
                                  <fx:Object name="Helen" age="8"  sex="male" />
                                  <fx:Object name="Ice" age="9"  sex="male" />
                                  <fx:Object name="Jack" age="10"  sex="male" />
                                  <fx:Object name="Lance" age="11"  sex="male" />
                                  <fx:Object name="Mary" age="12"  sex="male" />
                                  <fx:Object name="Nancy" age="13"  sex="male" />
                                  <fx:Object name="Opera" age="14"  sex="male" />
                                  <fx:Object name="Quntas" age="15"  sex="male" />
                                  <fx:Object name="Ray" age="16"  sex="male" />
                                  <fx:Object name="Stone" age="17"  sex="male" />
                                  <fx:Object name="Tom" age="18"  sex="male" />
                        </s:ArrayCollection>
              </fx:Declarations>
              <s:List x="69" y="57" width="320" height="320" dataProvider="{list}" itemRenderer="spark.components.LabelItemRenderer"
                                                      labelField="name">
                        <s:layout>
                                  <s:TileLayout columnWidth="100" orientation="rows" requestedColumnCount="3"
                                                                                                        requestedRowCount="3" rowHeight="100"/>
                        </s:layout>
              </s:List>
              <s:Button x="63" y="9" label="age &lt; 20" click="button1_clickHandler(event)"/>
              <s:Button x="157" y="9" label="age &gt; 05" click="button2_clickHandler(event)"/>
    </s:View>

    Hi,
    It seems that is a problem with selectedIndex.
    Try:
    protected function button1_clickHandler(event:MouseEvent):void
        myList.selectedIndex = -1;
        list.filterFunction = f1;
        callLater(applySort);
    protected function button2_clickHandler(event:MouseEvent):void
        myList.selectedIndex = -1;
        list.filterFunction = f2;
        callLater(applySort);
    private function applySort():void
        list.refresh();
    <s:List id="myList" x="69" y="57"...
    Philippe

  • Air does not display on Panasonic VIera with VGS and mini adaptor

    I have the mini vga adaptor and my air works on our Dell monitor, however when plugging it into our TV - Panasonic Viera around 4 years old LCD, nothing happens - ie you select PC and the screen is black. Our old powerbook used to work.
    Do I need to hit a button or set something up?

    If you mean the mirror icon it is because you need OS X 10.8 Mountain Lion so you will need to purchase it from the app store.  There is also a third party app called airparrot, www.airparrot.com.
    Jules

  • IPhoto6 - after a full reistall of Snow Leopard, iphoto does not display thumbnails. I've restored from time machine, rebuilt the library and run through the rebuild thumbnails function with no success. The files are there, I just get a dotted outline.

    iPhoto6 on iMac running SL - after a full reistall of Snow Leopard, iphoto does not display thumbnails. I've restored the library from time machine, rebuilt the library from iPhoto and run through the rebuild thumbnails function with no success. The files are there, I just get a dotted outline instead of the thumbnails. Does anyone have any other ideas on how to restore the thumbnails?

    Try the following:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Hi my web hosting company irunsolutions.co.uk have informed me that my website does not display properly in firefox when run on a windows 7 32 bit platform.

    website is www.empireembroidery.co.uk
    does not display properly when viewed on 32bit windows 7 platform in firefox.

    You can try these steps in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My IPhone 4's mailing feature does not display the toolbar at the bottom for deleting, moving, or writing emails. What is wrong with it?

    My work recently decided to buy every full time employee an IPhone 4 to be used for work purposes. (I do suspect these are refurbished, but I don't think that matters) I have had no trouble with it, except for on occasion the mailing feature does not display the toolbar at the bottom for deleting, moving, or writing emails. You know what I'm talking about...that bar at the bottom of the mailbox when you open an email that you use to delete, respond, forward, move, etc. It just goes away for no reason, and then reappears for a day or two, and goes away again. It is quite annoying since I can't respond to any of my emails without getting on my work computer. If you have any suggestions, please help!

    Hi there,
    You may need to force close the Mail application when this happens. The next time this happens, use the steps in the article below to coles out of the mail application.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Hope that helps,
    - Griff W.

  • Reader X does not display drawing in PDF generated with LaTeX

    I have a quite large PDF generated by pdfTeX, Version 3.1415926-1.40.11 which contains also XY-pic drawings rendered with Xy-pic version 3.8.2, PDF driver v.1.4.
    One drawing does not display correctly in Adobe Reader X. Neither on Windows, neither on Mac. It does display correctly with following programs:
    Preview on Mac OS X 10.5 and 10.6
    Adobe Reader 9.x
    Skim (skim-app.sf.net).
    When I open this document with Adobe Reader X I get following error message when I hit page 58:
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem".
    Where does one report rendering problems?
    Damjan

    See [https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • I have yahoo mail, since your newest upgrade, when I open an email with a picture in it. The picture does not display

    I have windows7/8 and use att.yahoo mail. when I receive an email with a picture in the body, the picture does not display, this started happening after fire fox latest upgrade

    If images are missing then check that you do not block images from some domains.
    *Tap the Alt key or press F10 to show the Menu bar.
    Check the permissions for the domain in the currently selected tab in "Tools > Page Info > Permissions"
    Check "Tools > Page Info > Media" for blocked images
    *Select the first image link and use the cursor Down key to scroll through the list.
    *If an image in the list is grayed and "<i>Block Images from...</i>" has a checkmark then remove this checkmark to unblock images from this domain.
    Make sure that you do not block (third-party) images, the <b>permissions.default.image</b> pref on the <b>about:config</b> page should be 1.
    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    There are extensions like Adblock Plus (Firefox/Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images and other content.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *http://kb.mozillazine.org/Websites_look_wrong

  • Ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    No on the book title, no problem there.
    The issue is: my book pages appear as on white paper, no background that resembles a open book and also no option to change fonts. The book was created in iBooks author, there was a problem going with the "Publish" menu route so I was instructed my Apple to "export" the file and submit that. I think that's the problem after reading that iBooks author is a hybrid epub file.
    Thanks for getting back to me.

  • When my Firefox language settings are fr_fr or fr_ca Firefox does not display the e with acute accent character correctly when it is displayed in a javascript alert box. However, it does display it correctly when my language settings are just fr. Please t

    Firefox does not display the e with acute accent character correctly from a javascript alert box when my browser language settings are fr_ca or fr_fr. However, it does it correctly when my browser language setting is fr. How do i get it to display e with acute accent and other iso8859 characters correctly in a javascript alert box when my browser language settings are fr_fr and fr_ca?
    == This happened ==
    Every time Firefox opened

    Use Unicode (UTF-8) for those characters.
    Then you will always be sure that they are displayed correctly.

  • Take picture with iPhone but it does not display it

    I take pictures with iPhone but it does not display it

    Take a picture. Tap on the thumbnail at the bottom left (portrait) or bottom right (landscape) of the screen to display it and access the rest of the camera roll.  Why is everybody complicating this?

  • Content does not display when page first opened

    Hi All;
    I have a contenta are/region which I have divided into multiple tabbed areas. I have two main tabs that divide the content into two major topics. Within each of these main areas I have added 4 to five tabs. One set for example holds a calendar, another tab a news release area and a third a content area for holding multiple folders of a department's documentation. The problem I am encountering is that when I first bring up the page all I see are the tabs and no matter what tab area is exposed the content within it is not displayed. For example, I start with the Calendar tab active (the calendar does not display). I then click on to say the document area, which displays all of its content's correctly. When I return to the calendar tab the calendar is displayed. My question... how can I ensure that the calendar (or any other tabbed area's content is displayed when the user first brings up the page?
    PS. This is a hot topic since I will be demoing my pages to my managers next week in an effort to convince them that Oracle Portal is the way to go.

    When I email the page to our server, the href links are missing.
    You email the page to the server?  What does that mean?
    MaureenHayslett wrote:
    I am using CS3 on Mac OS 10.6. The page previews perfectly in Safari. When I email the page to our server, the href links are missing. For example, the banner doesn't use the correct font, and the background color the the whole page is missing. Please go to http://www.crhcarchives.org/links.html
    All of the other pages on the website look correct. Thank you.
    Look at the source on that page.  There is virtually no styling on it....
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
    <style type="text/css">
    <!--
    .style16
         {font-size:14px}
    -->
    </style>
    </head>
    There is nothing telling the page which fonts to use, or which colors to use.  Are you sure you have uploaded the correct page?

  • SSLVPN in IE 8 or 9 does not display login page

    Hi all,
    I have a working setup with a customer using UC560 that uses SSLVPN and it works but only when using other browsers like Firefox and google chrome, when we try using IE version 8 or 9 we get prompted about the security certificate (the usual, as it's https) and after making the exception it does not display the login page, just this: Internet Explorer can't display this website, and that's about it, don't even get the chance to login nor download the anyconnect client, anyone know if there's a patch or something for this?

    Hi Bryan,
    thanks for your response, unfortunately it's a UC560 not an SA500 so i don't have those options, so far I haven't found configuration options that deny IE or someting like that, it really is a weird problem and it's though to troubleshoot.
    When I do debug webvpn http and try to enter the webpage with IE it shows this:
    077696: Mar 26 19:35:09.841: WV-HTTP: Fragmented header-line
    077697: Mar 26 19:35:09.841: WV-HTTP: HTTP request line too long
    077698: Mar 26 19:35:09.841: WV-HTTP: Deallocating HTTP info
    and when i do the same debug but enter the webpage using firefox or google chrome it succeeds, sending this debug output:
    102796: Mar 27 18:37:02.411: WV-HTTP: Original client request
    GET / HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102797: Mar 27 18:37:02.411: WV-HTTP: HTTP Header parsing complete
    102798: Mar 27 18:37:02.411: WV-HTTP: * HTTP request complete
    102799: Mar 27 18:37:02.431: WV-HTTP: Original client request
    GET /webvpn.html HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102800: Mar 27 18:37:02.431: WV-HTTP: HTTP Header parsing complete
    102801: Mar 27 18:37:02.431: WV-HTTP: * HTTP request complete
    102802: Mar 27 18:37:02.515: WV-HTTP: Original client request
    GET /paramdef.js HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102803: Mar 27 18:37:02.515: WV-HTTP: HTTP Header parsing complete
    102804: Mar 27 18:37:02.515: WV-HTTP: * HTTP request complete
    102805: Mar 27 18:37:02.523: WV-HTTP: Original client request
    GET /lang.js HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102806: Mar 27 18:37:02.523: WV-HTTP: HTTP Header parsing complete
    102807: Mar 27 18:37:02.523: WV-HTTP: * HTTP request complete
    102808: Mar 27 18:37:02.547: WV-HTTP: Original client request
    GET /shared.js HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102809: Mar 27 18:37:02.547: WV-HTTP: HTTP Header parsing complete
    102810: Mar 27 18:37:02.547: WV-HTTP: * HTTP request complete
    102811: Mar 27 18:37:02.671: WV-HTTP: Original client request
    GET /img/logo.gif HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102812: Mar 27 18:37:02.671: WV-HTTP: HTTP Header parsing complete
    102813: Mar 27 18:37:02.671: WV-HTTP: * HTTP request complete
    102814: Mar 27 18:37:02.675: WV-HTTP: Original client request
    GET /img/login_photo.jpg HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102815: Mar 27 18:37:02.675: WV-HTTP: HTTP Header parsing complete
    102816: Mar 27 18:37:02.675: WV-HTTP: * HTTP request complete
    102817: Mar 27 18:37:02.895: WV-HTTP: Original client request
    GET /favicon.ico HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102818: Mar 27 18:37:02.899: WV-HTTP: HTTP Header parsing complete
    102819: Mar 27 18:37:02.899: WV-HTTP: * HTTP request complete
    102820: Mar 27 18:37:02.907: WV-HTTP: Original client request
    GET /webvpn.html HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102821: Mar 27 18:37:02.907: WV-HTTP: HTTP Header parsing complete
    102822: Mar 27 18:37:02.907: WV-HTTP: * HTTP request complete.
    I wonder what difference do they have in the HTTP request line length, probably a browser problem, I'll keep looking into it like it's the browsers fault for now.

  • JavaScript does not display in Design view

    Hi,
    I am just starting to learn JavaScript so excuse my, maybe stupid, questions.
    Why the following code does not display Hello world! in Split view on the "design" side? When I upload the file onto the server and try to view it in the browser everything displays normally.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Homepage</title>
    </head>
    <body>
    <script type="text/javascript">
    document.write("Hello World!");
    </script>
    </body>
    </html>

    Hi,
    This is normal, design view is simply a way of either creating your website using the wysiwyg method or if you code the website it is a way of getting an idea what the site will look like static.  Design view doesn't run any scripts, which is why in the more recent versions of dreamweaver we have LiveView which does run the scripts and allow you to interact with drop down menus and the like, which you can't do in DesignView.
    Richard

Maybe you are looking for