Hi, I am getting a 2032 (stream error )what I first hit my httpservice using internet explorer. This does not happen with firefox. In either case I am getting a success response back from the service (status = 200). When I clear the cache on ie, I do not get the error. Only on the first access. Here is my service:
<mx:HTTPService id="someService" url="{someServiceURL}" useProxy="false" method="GET" resultFormat="e4x" contentType="application/x-www-form-urlencoded" fault="onServiceError(event)" result="someService_onComplete(event)"> <mx:request> <action>{someServiceAction}</action> <device>{deviceIndex}</device> </mx:request> </mx:HTTPService> I am executing via someService.send() which is executed in a method that is invoked on a module preinitialize. Thanks, Dan