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