My responses inline:

On Thu, Oct 12, 2017 at 6:32 AM, 0xC3 <ts...@outlook.com> wrote:

> I have a question about Flex apps with iOS. We have a Flex browser app that
> was started years ago to interface with a device we ship to customers. The
> device ships with a webserver to interface with. To help mitigate the 2020
> problem and use mobile devices we built an app to load the browser swf
> using
> SwfLoader to display and use the app. The loaded swf connects to the web
> services, and seems fine on windows desktops and android.
>
> We have customers that would like to use an iOS version of this. We are not
> a mac shop and have no experience with iOS. I know there are issues with
> iOS
> loading remote apps, so before we invest in hardware to test and start down
> this road I would like to ask if anybody has experience with something
> similar.
>
> 1. Can SwfLoader be used on iOS?
>

If your swf contains code (and not just assets) it will throw errors.  An
alternative approach would be to simply create a mobile Flex project and
import all that code and compile it as a pure iOS app.
You could move all the application logic into a Flex Library project and
build shell applications that load a component (during compile time)  This
approach lets you share code between web, desktop, ios and android
platforms.
Here is a slightly related example:
https://github.com/bigosmallm/TwitterTrends


> 2. Will an iOS app be allowed to connect to web services of an arbitrary
> device IP(unknown IP address until it's shipped to the customer)? Multiple
> arbitrary device IP's?
>

By default no.  But you can make changes to the Info.plist files (via the
air-descriptor.xml) to fix this problem
More details: https://forums.adobe.com/thread/2036070


> 3. Is non ssl connections ok on internal networks?
>

Same as above.


> 4. What about UDP are there any limitation there (there are some remote
> commands using UDP as well)?
>

I believe UDP should work the same way, i.e. without any problems.


>
> Thanks to everybody in advance.
>
>
>
>
> --
> Sent from: http://apache-flex-users.2333346.n4.nabble.com/
>

Reply via email to