I'm using "POST" and a unique string for the url. See below.
[Bindable]
private var HTTPService_url:String = "company.php?ForceIEReload&ms=" +
new Date().getTime();
<mx:HTTPService url="{HTTPService_url}" method="POST" id="data"
resultFormat="e4x" result="xmlResultHandler(event);"
fault="xmlFaultHandler(event);"/>
What I noticed is that in Firefox, I see the message
"Transferring data from localhost..." appearing at the bottom left in
the status bar... I can tell that every 30sec it updates whereas in IE,
it always displays "Done"???
I think IE never runs the "updateData" function...?
private function updateData(event:TimerEvent):void {
data.send();
}
Or maybe it kept the "data.send" values in cache...
Any ideas?
Thanks everyone.
-David
--- In [email protected], "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>
> Sounds like caching to me as well. Are you using "GET" or "POST"? I
> use post exclusively and have no caching issues. The unique string on
> the url is an accepted solution as well.
>
>
>
> Tracy