HTTPService fails to connect on Android 4.0.x
- on pre-4 android , ios devices method below fires me resulthandler fine.
- on 4.0.4 device method below fires me faulthandler no informative message.
what's that?
tia
private function requestthing(url:string, username:string, password:string):void {
var http:httpservice = new httpservice();
http.addeventlistener( resultevent.result, resulthandler );
http.addeventlistener( faultevent.fault, faulthandler );
var param:object = {
"request" : "gettthing",
"username": username,
"password": password
};
http.url = url;
http.send(param);
}
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment