I am using Adobe AIR 14.0.0.125 to build an iOS app which works without error when on WiFi, or with any cell service, besides AT&T. When using AT&T, regardless of the service, i.e. 3g, LTE, etc, the XML returned from my server has extra characters, which renders it unreadable by the app.
This only happens on iPhones with AT&T. The same app on Sprint service, Verizon, Wifi, or any Android phone works.
The process is: Post some variables to a PHP file, PHP file searches my database, and echos XML.
What is usually returned by the server when on Wifi, Sprint, Android, etc.:
<?xml version="1.0"?>
<businesses>
<name>Business A</name>
<name>Business B</name>
<name>Business C</name>
</businesses>
What is returned on AT&T service:
16
<?xml version="1.0"?>
d
<businesses>
1b
<name>Business A</name>
18
<name>Business B</name>
12
<name>Business C</name>
7
</businesses>
41
Any ideas on what is causing this, and how to fix it?
Thanks in advance.