My HTTPService resultHandler is firing twice. Is that normal? The messageId and token# are the same. StatusCode=200 both times.
I've examined the traffic in Fiddler and only one request is being submitted. Here's a code snippet; I've put a breakpoint on the service send() method and it is happening only once.
var token: AsyncToken; var myResponder : AsyncResponder = new AsyncResponder(onResult, onFault); token=myHTTPService.send(); token.addResponder(myResponder); private function onResult(e:ResultEvent , token:Object=null):void { **// we enter this function twice** }