Problem in android runtime

I have install officials 10.3.1.1779 but after using some months, it has problem in android running on mobile data just show no network connection while blackberry application run softly!

I have the same issue. using the 10.3 OS, I hope that gets fixed in future releases.

Similar Messages

  • Problem with Android 4 StageWebView cutting off/covering up buttons on same View

    So I'm trying to pull off something similar to the example here: http://cookbooks.adobe.com/post_Create_a_basic_web_browser_with_StageWebView-18850.html. Basically, a native browser view with a few Flex controls over top. Problem is, I've been running into a lot of display problems on Android 4 devices specifically. As far as I can tell, the StageWebView seems to be preventing the button overhead from being rendered in part or *at all* - as in, the button doesn't show up at all. It's just black.
    See for yourselves. Here's a screenshot (the test page has a yellow background):
    If I touch the screen or the web view, the button will (usually) abruptly show up above the page, where it's supposed to be:
    Anyone else seen anything like this before? Any ideas what it could be?
    Additional information for those who might want it:
    - Project is being developed in Flash Builder 4.6 with the 4.6 SDK. Screenshots are from a Google Nexus 7 tablet (Android version 4.1.2, Adobe AIR version 3.4.0.254).
    - the view in this case is an ActionScript class extending View with a skin. Here's the relevant code:
    [SkinState("ready")]
    [SkinState("loading")]
    public class LogInWebView extends View
              [SkinPart(required="false")]
              public var previousButton:Button;
              private var browser:StageWebView;
              private var url:String;
              private var isFirstPageLoaded:Boolean;
              public function LogInWebView()
                        super();
                        isFirstPageLoaded = false;
              override public function set data(value:Object):void {
                        url = value.url;
                        invalidateProperties();
              // protected functions
              override protected function createChildren():void {
                        super.createChildren();
                        if (url) {
                                  browser = new StageWebView();
                                  browser.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);
                                  browser.addEventListener(Event.COMPLETE, onFirstPageLoaded, false, 0, true);
                                  browser.loadURL(url);
              override protected function partAdded(partName:String, instance:Object):void {
                        super.partAdded(partName, instance);
                        if (instance === previousButton) {
                                  previousButton.addEventListener(MouseEvent.CLICK, onPreviousButtonClick, false, 0, true);
                                  if (browser) {
                                            browser.viewPort = new Rectangle(0, previousButton.height, stage.stageWidth, stage.stageHeight-previousButton.height);
              override protected function commitProperties():void {
                        if (isFirstPageLoaded && currentState != "ready" && browser) {
                                  // display StageWebView now that it's loaded
                                  skin.currentState = "ready";
                                  browser.stage = this.stage;
                        } else if (currentState != "loading") {
                                  skin.currentState = "loading";
                        super.commitProperties();
              // event listeners
              private function onFirstPageLoaded(event:Event):void
                        browser.removeEventListener(Event.COMPLETE, onFirstPageLoaded);
                        isFirstPageLoaded = true;
                        invalidateProperties();
    - note: the button ONLY appears in state "ready" - it's not in state "loading."
    Your thoughts?

    Hi,
    Not sure what your specific problem is, but I have encountered no problems at all by going a stage further with my implementation - it is based on http://soenkerohde.com/?s=stagewebview but I extended it to update on dimension changes of the container.
    EG:
    [code]
    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
    super.updateDisplayList(unscaledWidth,unscaledHeight);
    updateBrowser();
    protected function updateBrowser(event:ResizeEvent=null):void {
    if(myStage && stageWebView) {
      var offsets:Point = new Point();
      offsets = this.localToGlobal(offsets);
      stageWebView.viewPort = new Rectangle(offsets.x, offsets.y, unscaledWidth, unscaledHeight);
    [/code]
    Seems to work for me, anyway. Hope it does for you too.
    G

  • Streaming problems on Android?

    I really have no idea where to post this, so here goes.
    Starting a "webcasting-station" using Shoutcast as the stream provider and a HTML5/Flash fallback player on the site.  Things seem to be cool with BB and iOS devices, Android is a little finicky.  Sometimes it's there, sometimes not.  So...where's the problem - Flash, Android, Shoutcast, the player???  BB and iOS going HTML5 while Android Flash?  Perhaps Icecast works better with Flash or whatever the problem happens to be?  Things're fine on PCs and everywhere else accept Android.  Help!

    I am currently watching Episode 1001 on my Dell laptop running Windows XP and IE. I am watching the stream as intended with the QT movie embedded in your page. So far (about a third of the way through).... No problems.... No drop-outs, glitches or anything. Nothing but crystal clear video and audio.
    At this time, I would recommend making sure that the client Windows machines download the latest version of QT from Apple's website.
    Adam

  • Problem in using runtime.exec()

    Hi all,
    I am having a problem with the runtime.exec method.I am trying to execute linux commands using this method.For most of the commands it works fine.But when i tried to change the user with the su command in linux my program hung up.So please help me to get around this.any help would be highly appreciable..
    I am pasting the code..
    <code>
    Process p=null;
    int ch=0;
    try
    System.out.println("Before executing command");
    String unlock_command="sh changeuser.sh";
    p = Runtime.getRuntime().exec(new String[] {"/bin/sh","-c","su tony"});
    InputStreamReader myIStreamReader = new InputStreamReader(p.getInputStream());
    while ((ch = myIStreamReader.read()) != -1)
    System.out.print((char)ch);
    p.waitFor();
    int p_exitvalue = p.exitValue();
    System.out.println("After executing the command and the exit value = "+p_exitvalue);
    p.destroy();
    catch (IOException anIOException)
    System.out.println(anIOException);
    catch(Exception e)
    e.printStackTrace();
    </code>
    Thanks
    HowRYou

    Is it possible that this is a re-post of this thread?
    http://forum.java.sun.com/thread.jspa?threadID=636637
    :^)Might be! What gives you that impression?

  • Java card Applet RSA encryption Problems with Android

    hi all,I am new to java card development. I have used nxp jcop 31-36 java card and nexus s for testing the application.so i have faced lot of problems.first of all i want to encrypt data coming from the android app using RSA1024 and send back to the android application.there are the problems I faced
    1.RSA1024 and RSA2048 algorithms can't work with the nexus s Application.it means i can't receive any encrypt data from card.but when i test the application with eclipse jcop shell tool it is work properly.
    2.when i run the application in nexus s the application is crashed.it gives some wired sound when tap the java card to android phone.it may be java card application crashed or give some wired sound from android OS level.
    3.Then I Test the Application with Samsung S2. Sometimes it works but sometimes it crashed.in the S2 the encryption works fine(but we have to keep wile card 2 or 3 minutes).
    these are the steps i followed in established the connection i android phone.So fist i created the ISO dep connection and first select the Application(00A40400AID).Then using transive method i send data to java card.In the Java card in the installation i have created the RSA key pairs and get the RSA public key and private key.in some method i got the APDU buffer and read data and encrypt this data.Then those are send back to the card. First i want to know is there any problem in Android Os or JCOP 31/36 card.And other thing each time i requested to java crd is that need to reset the java card and how to reset the Java card.(some brief idea)

    Hi,
    1) Import android.smartcard libraries,
    2) Try to make a connection :
    ISmartcardConnectionListener connectionListener = new ISmartcardConnectionListener()3) create an instance of smartcardclient:
    smartcard = new SmartcardClient(this, connectionListener);4) get the list of readers :
    String[] readers = smartcard.getReaders();you can check if a specific reader is connected or nor with
    smartcard.isCardPresent(readers [0]);5) create a card channel and select your applet:
    cardChannel = smartcard.openLogicalChannel(cardReader, APPLET_AID);
    ICardChannel cardChannel = null;
    cardChannel = smartcard.openLogicalChannel(cardReader, APPLET_AID);6) you can send and receive APDUs with this line of code:
    byte[] response Apdu = cardChannel.transmit(commandApdu);Regards,
    Hana

  • Problem installing android-sdk from AUR using yaourt

    Hi all,
    I use yaourt to install packages from the AUR but I'm having an issue with android-sdk.
    Whenever I run 'yaourt -S android-sdk' it seems to detect that the 'java-runtime' is not installed.
    However, I do have sun's jre and jdk installed (I was having applet issues with openjdk) and it detects this when it actually starts installing it.
    But it just reinstalls the package and quits without installing the android sdk. If I run yaourt again, the same thing happens.
    Does anyone have an idea of what the problem might be?
    I could download the tar.gz from google but I'd rather keep everything handled by arch package management.

    Is that a show stopper for yaourt?  I use aurbuild and did that install the other night.  It tripped over the java runtime and pitched a warning, but the build worked and it installed. 
    I could download the tar.gz from google but I'd rather keep everything handled by arch package management.
    Even if you hand build the AUR in a directory of your choice, the resultant package is still integrated into your Arch system using the -U option of pacman.  Regadrless of the front end (Yaourt, aurbuild, or roll-your-own), pacman tracks the package as 'Foreign'.  FYI.

  • Problem with Android Apps on Yoga Tablet 8

    I tried to convince my wife to use the lenovo yoga tablet 8 instead of the iPad. When running the NBC Google app on the yoga tablet 8, the commercial would run but not the video. It is not happening in the Apple iPad. I called up lenovo tech support and they told me to upgrade the firmware and reinstall the app. It didn't resolve the issue. Is anyone having the same problem where you have the same app on the iPad and Google?
    From an engineering perspective, why isn't the yoga tablet 8 or 10 running Windows 8.x?  

    Basically the Android version of that app is just a really bad port of the iOS version for Apple devices. NBC put a tonne of effort into the interface, but zero effort into making it actually work.
    Take a look at the reviews on the Google Play page for the app, they're almost all 1 star and negative comments. Blame NBC, not Android or Lenovo. 
    As to why do the Yoga 8/10 not run Win8...personally I'd say it's because Win8 is an ugly, flawed, pointless pile of crap whose downfall will be swift and sudden very soon. The actualy answer probably edges toward something more logical like: Lenovo cater to multiple markets. There are Yoga (and other Lenovo) tabs that run Windows, and the Yoga 8/10 are the Android equivalent of them. If Windows 8 is important to you, and you don't want to punch yourself in the face repeatedly until you pass out, I'd suggest getting a Yoga 12. 

  • Problem Connection at Runtime

    Hi everybody,
    Context: Crystal Reports 9, Windows XPPro, SQL Server
    When I change my report to another Datasource at runtime doesn't work I retrive always the same data from the original Datasource.
    Below the code I'm using
        Dim sql As String, ConnectionInfo As CRAXDRT.ConnectionProperties
        Dim server As String, db As String
        sql = "MYRPT.rpt"
        Set CrxReport = CrxApplication.OpenReport(sql)
        Set ConnectionInfo = CrxReport.Database.Tables(1).ConnectionProperties
        ConnectionInfo.DeleteAll
        server = "NEWSERVER"
        db = "NEWDB"
        ConnectionInfo.Add "Provider", "SQLOLEDB"
        ConnectionInfo.Add "Data Source", server
        ConnectionInfo.Add "Initial Catalog", db
        ConnectionInfo.Add "User ID", "X"
        ConnectionInfo.Add "Password", "X"
    Thanks for any help.
    Jaime Zamora

    Post Author: phoenixvn
    CA Forum: .NET
    Thanks for your answers.I have found a way to overcome the problem and here is my code:        private bool ApplyLogOn(string password, ReportDocument reportDocument, string serverName, string userName) {            TableLogOnInfo li;            foreach (Table table in reportDocument.Database.Tables) {                li = (TableLogOnInfo)table.LogOnInfo.Clone();                li.ConnectionInfo.UserID = userName;                li.ConnectionInfo.Password = password;                li.ConnectionInfo.LogonProperties.Set(CONNECTION_URL, CONNECTION_URL_VALUE + serverName);                li.ConnectionInfo.LogonProperties.Set(JDBC_CONNECTION_STRING, JDBC_CONNECTION_STRING_VALUE + serverName);                table.ApplyLogOnInfo(li);                // Tests the connection.                if (!table.TestConnectivity()) {                    return false;                }            }            return true;        }

  • In-app purchases problem on Android

    Hello!
    I'm trying to test in-app purchase as test user on Android device. After the payment is done a downloading process has to be started. But instead I receive the message 'Unable to validate purchase receipt. Try again later'.
    To check my Payment account I downloaded some DPS magazine and bought a real issue. No problem. So my Payment account is checked.
    Please, any advice what's wrong?

    Please double check that you have your Shared Secret setup correctly.  You may specify the Shared Secret/Public Key using the Account Administration tool on the DPS Dashboard.  Please refer to this forum post for more information Could not verify purchase

  • ADFMobile - Web service data control problem for android

    Hi,
    I created an application for android and testing it on an emulator.
    I am able to create web service data control for a jax-ws web service. But when I invoke the web service and the call comes to the web service host, there are no namespaces in some of the parameters. Typically, the tags which do not have the namespace are complexTypes. All the values of the parameters come properly. I have tried executing the data control in three different manners but still no luck.
    AdfmfJavaUtilities.invokeDataControlMethod(..);
    AmxMethodActionBinding.execute();
    +#{bindings.invokeMethod.execute}+
    Thanks.

    Hi there,
    Can you try to generate a sample JAX-WS the generates a similar complex structure that can help you and us to isolate the issue? I created a jax-ws service using simple complex type on Ubuntu and also a client mobile application getting no problems running it. But, perhaps you are using a more complex structure, hence an standalone would be very useful.
    Juan C.
    Edited by: Juan Camilo Ruiz on Dec 10, 2012 4:00 PM

  • Problem getOutputStream of Runtime

    Hi all,
    I'm facing a problem with getOutputStream Following is my code:
    try {
    String loadCommand = "svnadmin load " + repLocation;
    Process loadProcess = runtime.exec(loadCommand);
    OutputStream os = loadProcess.getOutputStream();
    FileInputStream is = new FileInputStream(restoreLocation);
    byte[] buff = new byte[BUFFSIZE];
    int len = 0;
    while ((len = is.read(buff)) > 0) {
    os.write(buff, 0, len);
    is.close();
    os.close();
    } catch (IOException e) {
    log.error("IO EXCEPTION" + e.getMessage());
    } catch (InterruptedException e) {
    log.error("INTERRUPTED EXCEPTION" + e.getMessage());
    i'm getting the following exception:
    java.io.IOException: The pipe has been ended
         at java.io.FileOutputStream.writeBytes(Native Method)
         at java.io.FileOutputStream.write(Unknown Source)
         at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
         at java.io.BufferedOutputStream.write(Unknown Source)
         at Load.<init>(Load.java:58)
         at Load.main(Load.java:107)
    The above code is used to restore my repository.The code work upto some 30 revisions,But after some tiem i get the above exception.
    Can anyone please point out my mistake!!
    Not much of examples available for getOutpuStream method!!
    Thanks
    Archana

    The dump file is basically the mixture of text headers and binary content, MD5 checksums are used to verify content, but no checksums for the headers (only the lenght is given, so that the headers content doesn't have to be eschaped).
    It should be easy to find out in which revision the error occurs (since the svnadmin load outputs the information about which revision is being processed). You can either check it and try to correct manually or maybe examine and point out the error in the dump file.
    A possible reason which comes to my mind right now is wrong encoding of some national characters, which causes the properties to be longer than the advertised lenght (since UTF-8 encoded characters take more than 1 byte). We experienced similar error with PVCS import.

  • Any problems with labview runtime v 7.1 on one host interacting with lvrte 6.1 on another host?

    Using OPC, UDP ant TCP on the host running lv 7.1 runtime, communicating with a second host running lvrte 6.1. Both hosts communicating with cpfp 2020 and using similar IAK files. Need to know if there are any known problems with this scenario. I cannot convert st this time, the legacy 6.1 side.

    Hello,
    Thank you for contcting National Instruments.
    I am not sure I understand your question. The LabVIEW Run Time Engine (LV RTE)is used when you will be running an executable on a target. If you want to run executables on your cFP-2020 that were built in LV 6.1 and 7.1, you will need to make sure that LV RTE 6.1 and 7.1 are installed on the cFP 2020.
    If you wish to run VIs (not executables) targeted to your cFP-2020, you can use LabVIEW Real-Time 6.1 or 7.1, but not both.
    Let me know if you have further questions.
    Sean C.
    Applications Engineer
    National Instruments

  • UNIX Problem with method Runtime exec(String[],String[],File)

    Hello !!
    i'm french
    scuse my english
    I got a probleme with method exec(String[],String[],File) of Runtime Class
    i don't have any probleme when my program runs on Windows NT but the same program on UNIX doesnt execute my command..
    When i use exec(String[]) methode i dont have this problem ...but i need the second one methode because i have to execute my command in a different directory than the JAVA program.
    I need that results of this command are placed in this drectory so that i can't use an exex() like that :
    exemple with a perl :
    "perl /toto/titi/hello.pl"
    I want to execute this :
    "perl hello.pl" (and hello.pl is placed in /toto/titi)
    Conclusion :
    the exec(String[],String[],File) solution is ok with NT ...
    but with UNIX ????
    Is there other solution ??
    Should i do a "cd" command before my execution ? how can i do this ??
    Thanks !!!!

    Could you post your source code (only relevant part)
    Raghu

  • A problem about ABAP Runtime Error

    Now i am responsible for writing a program, including an internal table, which will store 3 million Datensätze.
    But when ich ran this program, an error happened:
    Runtime Error: TSV_TNEW_PAGE_ALLOC_FAILED
    Short Text:
    No more storage space available for extending an internal table.
    What happened?
    You attempted to extend an internal table, but the required space was not available.
      CALL FUNCTION 'RRX_GRID_CMD_PROCESS'                  "Query ausführen
            EXPORTING  i_handle           = g_handle
                       i_cmdid            = 'STRT'
                       i_iobjnm           = g_iobjnm
            IMPORTING  e_max_x            = g_x
                       e_max_y            = g_y
            TABLES     i_t_ranges         = g_t_ranges
                       e_t_dim            = g_t_dim
                       e_t_mem            = g_t_mem
                       e_t_cel            = g_t_cel
                       c_t_prptys         = g_t_prptys
                       e_t_atr            = g_t_atr
                       e_t_grid           = g_t_grid
                       e_t_ranges         = g_t_ranges
                       e_t_con            = g_t_con
                       e_t_fac            = g_t_fac
            EXCEPTIONS inherited_error    = 1
                       no_record_found    = 2
                       terminated_by_user = 3
                       no_processing      = 4
                       no_change          = 5
                       dbcl_nosupport     = 6
                       no_authorization   = 7
                       x_message          = 8
                       screen_canceled    = 9
                       launch_url         = 10
                       OTHERS             = 11.
      IF sy-subrc ne 0.
        CALL FUNCTION 'DEQUEUE_E_BIW_IOBJ' EXPORTING IOBJNM = 'U_SSTMON'.
        raise QUERY_RUN_ERROR.
      endif.
      if not p_sstmon is initial.
        delete from /bic/pu_sstmon.
      endif.
      CALL FUNCTION 'DEQUEUE_E_BIW_IOBJ' EXPORTING IOBJNM = 'U_SSTMON'.
    Output der Query in schlanke Tabelle mit erstem Feld 'y' umladen...
      loop at g_t_grid into wa_g_t_grid.
        i_grid-y = wa_g_t_grid-y.
        i_grid-x = wa_g_t_grid-x.
        i_grid-data = wa_g_t_grid-data.
        if i_grid-data(1) = m1.                   "Hochkomma entfernen
          shift i_grid-data.
        endif.
    append i_grid .  Error happened hier
      endloop.
      refresh g_t_grid.
      sort i_grid by y x.
    Who could give me some suggestion to solve this problem?
    Thank you in advance.

    thank you for your info.
    I think that using package size is only choice to avoid the huge internal tabel.
    But now i have a question. I must sort this internal table. When i use package size, then i can only sort a part of internal table. This will cause data uncorrect.
      SELECT * FROM zubpgrid INTO TABLE i_grid PACKAGE SIZE 10000.
    Legende des Grids auswerten (1. Zeile)...
    SORT i_grid BY y x.
      LOOP AT i_grid.
        if i_grid-y ne 1.                                   "1. Zeile Ende
          exit.                          "loop at i_grid
        endif.
    leere Titel in der RSRT-Ausgabe fehlen in der int. Tabelle.
    Sie sind Texte zum Vorgängerfeld und werden hier für die Steuerung
    eingefügt, mit Name der Schlüsselfeldes + '_TXT'
        l_v_delta_x = i_grid-x - i_gridlegende-x.
        if l_v_delta_x > 1.                                 "da fehlte was
          concatenate i_gridlegende-data '_TXT' into i_gridlegende-data.
          add 1 to i_gridlegende-x.                         "das fehlende x
          append i_gridlegende.
        endif.
    jetzt das aktuelle Feld aus i_grid...
        i_gridlegende-data = i_grid-data.
        i_gridlegende-x    = i_grid-x.
        append i_gridlegende.
        DELETE i_grid.
      ENDLOOP.
    ENDSELECT
    Who could help me to solve this problem?
    Thanks in advance!

  • SOAP Webservice problem on Android

    Hello,
    I am trying to consume my own SOAP webservice and generated webservice stubs from my wsdl in flash builder.
    Testing operations is working fine. Everything is working in "simulated device". But when I run my app on my android device webservice calls are never returning.
    They are actually never received on the webservice server.
    Just afert 10 to 30 seconds there is a window displayed inside my app. This window is not from me, I only have two label fields in this project to display test webservice data.
    Made a image for you:
    "click to have good quality"
    I tried 2 services:
    one where the webservice server is running on my device (10.10.200.40 is devices ip address)
    one where the webservice is running in internet.
    The devices connection is fine. 10.10.200.40 and outside addresses are pingable and the webservice on the device can be called from flashbuilder's operation testing.
    Thanks,
    Thomas

    Hello All
    I also need to call some simple web mothods. How is this achieved?
    I have an as3 mobile project built in flash builder 4.6 which needs to send/ receive simple data with my asp.net web service.
    Is your problem related to a security setting in your xml descriptor file perhaps??

Maybe you are looking for

  • Urgent: Vendor Info in GL

    Is it possible to enhance the General Ledger: Line Items (0FI_GL_4) data source to pull Vendor Information (Vendor Number and Vendor Name). Please can anyone provide me tips for it. Thank you, Sam

  • Nexus 5000 vpc and fabricpath considerations

    Hello community, I'm currently in the process of implementing a fabricpath environment which includes Nexus 5548UP as well Nexus 7009 NX OS on N5K is 6.0(2)N1(2) Regarding the FP config on the N5K I wonder what is the best practice for the peer-link.

  • Basic Home Server

    Hey folks.  Thinking of building a basic server for storing files and torrenting.  Maybe later on expand it into doing other things but it's not gonna be doing anything big. Got a basic build here and just thought I'd run it past you guys see if it w

  • Mac Messages Audio/Video tab missing

    Hi, On my Mac Pro, in the Mac Messages app (ver. 8.0) preference pane, I am missing the tab for Audio/Video. Because of this, I'm unable to select my external audio device (a Focusrite Saffire Pro 40), and therefore hear no sound from video messages

  • Premiere doesn't auto reload footage.

    Premiere Pro CC on OSX... I am rendering out various 3d files from cinema 4D as a PNG image sequences  and I am making small changes and re-rendering them. Premiere however does not auto reload them. I have to do the replace footage to clear the cach