Problem with AMF on iOs

Hello

While developing a mobile application using flex with the last AIR buid 4.15 I get the following error when the application calls a service method on iOS:

[CPP faultString = "Send failed" error faultCode = "Client.Error.MessageSend" faultDetail ="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: failed]

-He works on android or the iPhone Simulator but not with a real device from Apple.

-It works on Pascale f I use AIR 16 instead of the AIR 21.

Any idea?

Thank you.

Problem solved.

The following key should be added to the tag app descriptor:

NSAppTransportSecurity

NSAllowsArbitraryLoads

Tags: Adobe

Similar Questions

  • I encountered the problem with the last iOS 9.3.2 update I can't receive call from people, I can call any body, but when l'm calling people any body can ring me just now, I thing the problem where new soft

    I encountered the problem with the last iOS 9.3.2 update I can't receive call from people, but I can call any body, but when l called people any body can ring me only at this time, I think that the problem of the new update. can u check this and answer my question.

    and my phone

    iPhone 6plus

    You see a Crescent Moon at the top of the screen icon? If Yes, disable does not bother to: settings - do not disturb = Off.

  • problems with ipod touch ios 9.3.2 and gen 6

    I own an iPod Touch generation 6 with 32 GB.  My PC is a Windows 7 PC.  My iTouch is looking forward to start a SOFTWARE iOS 9.3.2 UPDATE.

    I heard that there are "problems" with iOS 9.3.2.  I have not read that they affect the iPod Touch.  But who reads everything?

    Should I go ahead and update my iOS?   Or should I wait for iOS 9.3.3 or a new iOS 9.3.2?

    AND Apple should fix the editor of this Post, it *.

    I have a 6th gen iPod on 9.3.2 and it works fine

    The only devices with problems were iPad 9.7 Pro

  • Problems with the update IOS 10

    Hello

    I need help.  I updated my iphone 6 more last night at 10 IOS.  The update seemed to have worked, but now I can't sign in with my password ID Apple I get an error "Self-test Failed - there is a connectin to the Apple ID server error" to come after as I try to connect.  In addition, I can't in the itunes and app store apps.  The app just itunes appears blank and the app store app wrote "loading" all the time.  In fact, I have a problem, try to get the majority of my apps work now either.

    The only thing I tried to do to fix the problem is to turn the phone on and off again.  Any suggestions please?

    Jane.

    Greetings anfield5jane,

    I see that after updating your iPhone 6 more last night at iOS 10, you are now unable to connect your Apple ID and password. You get a verification failure message. I know how it is important to ensure that you can use these applications and services.

    I suggest you force by closing the App Store and the iTunes and app reopened to see if you get the same question. The following article will help you: force a nearby application on your iPhone, iPad or iPod touch

    If you notice that helps, try to force, close other applications that have the same problem.

    I would also like to test this on Wi - Fi and cellular data to see if you get the same result.

    Please let us know what happens. We're here to help.

    Best regards.

  • Starkey Halo AIDS have problems with the new ios 9.3.1

    My hearing aids Starkey Halo need bluetooth for streaming with my iphone. Worked fine until I updated my phone to ios 9.3.1. Help! I use this function by calls, the streaming of music and audio books.

    You must contact the support of Starkey to see if their devices are optimized to work with iOS 9.3.1. They would be the ones who you explain. If this isn't the case, you may have a problem, because Apple does not support downgrading from iOS. You might also need to re-pairing after iOS update. Starkey should be able to explain that for you as well.

  • Problem with microphone on iOS - bug or bad code?

    Hi all

    It seems that the use of the micro class freezes my Flex app. I provided the code below, but here is an overview:

    • This only happens on iOS - specifically my iPhone 4. I have not seen this problem on Android devices.
    • My code alternated recording and records don't not - 5 seconds to one, then 5 seconds of each other, then repeat over and over again.
    • I have reduced this to a 'minimum' example (see code below) which does this. It does not use data etc. coming the Microphone is not create or fill a ByteArray.
    • The application always crashes. In some cases, this happens when he worked only 2-3 minutes, in all cases, it happens in half an hour. I did 10 sets of tests and the average is 15 minutes.

    My application is a language learning app and recording and playback of the voice of the user is an important feature. It allows the user to hear how their pronunciation matches that of a native speaker. When recording / reading is marketed the software repeatedly plays a few sound recordings, the voice of the user, it reads, the more audio plays, etc.. In other words, it includes features similar to the minimal case code I included here. Users often use this feature 30 minutes or more. It is therefore a problem.

    I'm doing something wrong in my code? Just checking before I report it as a bug.

    You can download an FXP from here if you are interested:

    http://www.Brightworks.com/downloads/RecordingTest.FXP

    Alternatively, the important code is below. This is the display (only) of the sample application.

    Thank you

    Douglas

    Douglas McCarroll

    Brightworks, Inc.

    320.300.0220

    <? 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".

    creationComplete = "onCreationComplete().

    title = "Test recording" >

    < fx:Declarations >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var _isRecording:Boolean;

    private var _iterationCount:uint = 0;

    private var _microphone:Microphone;

    private var _recordedSeconds:uint = 0;

    private var _timer:Timer;

    private function onCreationComplete (): void

    {

    NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;

    }

    private void doNextPhase(event:TimerEvent_=_null):void

    {

    _isRecording =! _isRecording;

    If (_isRecording)

    {

    _iterationCount ++;

    displayOutput ("Recording");

    _microphone = Microphone.getMicrophone ();

    _microphone.rate = 44;

    _microphone.gain = 50;

    _microphone.setSilenceLevel (0, 2000);

    _microphone.addEventListener (SampleDataEvent.SAMPLE_DATA, onNewRecordingSampleData);

    }

    on the other

    {

    _recordedSeconds += 5;

    displayOutput ("Pausing");

    _microphone. RemoveEventListener (SampleDataEvent.SAMPLE_DATA, onNewRecordingSampleData);

    _microphone = null;

    }

    }

    private void onNewRecordingSampleData(event:SampleDataEvent):void

    {

    }

    private void displayOutput(phase:String):void

    {

    var freeMemoryMB:int = Math.round (System.freeMemory / (1024 * 1024));

    var privateMemoryMB:int = Math.round (System.privateMemory / (1024 * 1024));

    var totalMemoryNumberMB:int = Math.round (System.totalMemoryNumber / (1024 * 1024));

    phaseLabel.text = "Phase:"+ phase; "

    iterationLabel.text = "iteration:"+ _iterationCount; "

    recordedSecondsLabel.text = ' seconds saved: "+ _recordedSeconds;"

    freeMemoryLabel.text = "System.freeMemory MB:"+ freeMemoryMB; "

    privateMemoryLabel.text = "System.privateMemory MB:"+ privateMemoryMB; "

    totalMemoryNumberLabel.text = "System.totalMemoryNumber MB:"+ totalMemoryNumberMB; "

    }

    private function startTimer (): void

    {

    _Timer = new Timer (5000, 0);

    _Timer.addEventListener (TimerEvent.TIMER, doNextPhase);

    _Timer.start ();

    }

    private function onStartRecordingButtonClick (): void

    {

    If ((Microphone.getMicrophone ()))

    {

    startRecordingButton.enabled = false;

    startTimer();

    doNextPhase();

    }

    on the other

    {

    phaseLabel.text = 'No Mic' available;

    }

    }

    []] >

    < / fx:Script >

    < s:VGroup height = "100%".

    Width = '100% '.

    paddingBottom = "20".

    paddingLeft = "20".

    paddingRight = "20".

    paddingTop = "20" >

    < s:Label id = "phaseLabel".

    Width = "100%" / >

    < s:Label id = "iterationLabel".

    Width = "100%" / >

    < s:Label id = "recordedSecondsLabel".

    Width = "100%" / >

    < s:Label id = "freeMemoryLabel".

    Width = "100%" / >

    < s:Label id = "privateMemoryLabel".

    Width = "100%" / >

    < s:Label id = "totalMemoryNumberLabel".

    Width = "100%" / >

    < / s:VGroup >

    < s:HGroup width = '100% '.

    horizontalAlign = "center".

    Low = "10" >

    < s:Button id = "startRecordingButton".

    label = "Start Recording"

    a click = "onStartRecordingButtonClick()".

    Width = "60%" / >

    < / s:HGroup >

    < / s:View >

    The problem has been resolved with 3.8.0.730!

    http://forums.adobe.com/message/5399512#5399512 ;-)

    Thank you Adobe!

  • problem with pictures on ios.

    Hello

    When I was building my site, deleteproductions.nl, everything seemed to go well. The site looks good on safari (mac, Wallpapers) but when I looked at the page on my iphone and ipad the image have been replaced by the blue box with question mark (eror or something). But when I tried to uplaod anothere photo, it has been shown that on the desktop, bottom of page, but which is only a picture, and I want a lot more.

    What I am doing wrong? I tried something with the css rules (any) rename and checking if the images are the same (all png and RGB based) so I don't really know what to do.

    Thank you very much in advance,

    Leede Fabian

    OK - on my iPad to portrait, I don't see the colored areas under your menu, although I do not see their content. In landscape, I see the colored areas. Then I see the original logo in portrait and landscape, I miss two images, then I see the larger image, and finally I missed the last two.

    Is there a problem of CMYK with PNG images?  Anyway, in any case, you should reduce the physical dimensions of ALL these images (and thus their weight).  They are far too long.

  • Problems with music 10 IOS?

    On IOs 10 [iphone 6s +], when I play my music, all of a sudden, he cut near the end of the song and plays the next song and it keeps going it to some of my songs. And also the lyrics that I put manually into is gone on my phone.

    The music app 10 IOS seems to blur options for start/stop of the media that you have set in iTunes on your computer.  When you play the songs in RANDOM mode on your iPhone, the music app 10 IOS seems to randomly assign hours of weird power your songs.  The only way to avoid this (until Apple released a bug fix) is to disable the ALL Option > Start/Stop time for your songs in iTunes, or not play your songs on SHUFFLE on your iPhone.

  • Anyone else having a problem with Spotlight and iOs 9?

    I have all the Spotlight options switched immediately, but ever since the last update of the firmware (9.2.1) more time when I search for an app, nothing comes... I have 'Suggestions' allowed to. I tried to turn it off and restart my iPhone 6 and re-labeling (I saw that somewhere as a benchmark), but it did not help.

    Try resetting your device. This will not erase your data stored on that device.

    • Press and hold the sleep/wake button
    • Press and hold the Home button
    • Press and hold both buttons until the display turns off and on again with the Apple logo on the subject.

    Alternatively, you can go to settings - general - reset - Reset all settings

    If that doesn't work, restore your device to factory settings. Please note that this will delete the data on your device.

    Take a look this Apple Support article: use iTunes to restore the iPhone, iPad or iPod to factory settings - Apple Support.

    As a final step, try recovery mode. Turn off your unit, then plug it to your computer with the hold home button. Hold down Home button until you see the logo of iTunes on the screen of your device. After that on your computer, you should see the iTunes window saying that your device needs to be restored to factory settings. Click Restore.

    More info here:

    https://support.Apple.com/en-us/HT201263

    If these steps do not work, contact Apple and ask for help.

    https://www.Apple.com/support/iPhone/contact/

  • Battery problems with 4S after ios 9.1 installed

    After 9.1 install storage battery on my Iphone 4S down 12 to 18% per hour and hold on 50% power for there to be recharged. The stop function does not work now so I can't save energy when I am out by phone turning off the coast. Lost iTunes and the voice feature does not work on Google maps. Basically a screw - up complete. Any suggestions? Thank you.

    Mine is exactly the same since the last software update. I replaced the battery and restored to factory settings, and it's always the same.

    Please can rectify you this ASAP as I know having a teenage stepdaughter walked home from school in the dark with no phone battery left by the time she finishes school?

  • Problem with ADT for IOS

    I have an application (using FLash Pro 5.5) with which I use a native extension of SAI. When I build the app using the ADT command with a goal of -ipa-test-interpreter, it works fine on the iPad. But when I'm building using the -ipa-test, it does not start. According to the docs, that I read, the former built a test with interpreted code version, and no native code of the building. Because the version of the app store would also likely use native code, it worries me.

    Everyone has faced something like this? If so, any ideas what could be the case? When the lance of the native code version, I see the image by default, then it dorps right on the desktop.

    Scott

    Have sorted it. I had the library is incorrectly set. Works fine now.

  • problem with iPhone ios 10.0.1

    The first time that I m facing a problem with updates of ios not able to use the iphone.

    I can't use one of basic such as sms features or whatsapp does not not touch only.

    When you are coming up with the fix or let me know what will be the revert revert back as soon as possible back strategy.

    Kind regards

    Mehul vora

    098207 20061

    Hello. Please you not to Apple here. This is a user forum. All users are waiting for the next update with bugfixes.

    Try resetting your device. This will not erase your data stored on that device.

    • Press and hold the sleep/wake button
    • Press and hold the Home button
    • Press and hold both buttons until the display turns off and on again with the Apple logo on the subject.

    Alternatively, you can go to settings - general - reset - Reset all settings

    If that doesn't work, restore your device to factory settings. Please note that this will delete the data on your device.

    Take a look this Apple Support article: use iTunes to restore the iPhone, iPad or iPod to factory settings - Apple Support.

  • Problem of parachuting on iOS 9.3

    Hello world

    I just know that I have a problem with Airdrop since iOS 9.3 update.

    AirDrop no longer recognizes my contacts so I have to turn on the "everyone" option. When this option is enabled, sending is ok, but my contact's photo and the name still not displayed. Same problem with my 2 iPhones (6 & 5 s) who do not share the same address to iCloud.

    Anyone with the same problem?

    Concerning

    Have a problem. iPad and iPhone don't recognize each other, AND they did in previous IOS

  • I have problems with ios 9.3.5

    my ipod says it's still Friday, September 23 when it is Monday 26 and is stuck in the 04:00 time when I change the time, the screen turns off a color at random, then restarts then both will and I have to change but rest later if it changes at all used to date will not change anything and it runs still works when it wants to and it doesn't stay connected to WiFi , I have the ipod 5th generation and am not elligible for ios 10 Please if you can solve this problem with ios 9.3.5 I would be very grateful as I use my ipod for almost everything. Thanks - René

    It is a community based on the user. You do not speak to Apple directly. You can contact the Apple Support here: http://www.apple.com/ca/contact/

  • Is anyone having problems with their Apple Watch since the iOS 10 came to life?

    Is anyone having problems with their Apple Watch since the iOS 10 came to life?

    Hello

    If you have not already done so, it can also help update your Apple Watch to the latest version of the software:

    Update the software on your Apple Watch - Apple Support

Maybe you are looking for