Copy link to clipboard
Copied
Hello,
I try to download an XML file but I get this error! Everthing works fine on iOS but not on Android!
Here's the code:
eRequest = new URLRequest("http://user:password@www.mydomain.com/subfolder/myXML.xml");
eLoader = new URLLoader();
eLoader.dataFormat = URLLoaderDataFormat.TEXT;
eLoader.addEventListener(Event.COMPLETE, LoadExternalComplete);
eLoader.addEventListener(IOErrorEvent.IO_ERROR, LoadExternalError);
eLoader.load(eRequest);
I think it has to do with the password secured subfolder. When I use a non secured folder it works.
Any idea how to get this fixed? Is it a bug?
Thanks in advance,
Sebastian
Copy link to clipboard
Copied
Which version of AIR SDK are you using?
-Roshan
Adobe AIR
Copy link to clipboard
Copied
21.0.0.198 but it was the same with AIR SDK 18
Copy link to clipboard
Copied
Any ideas?