Hello, I have this app that was refreshing data in development but now once I deploy it to my server I am not getting the data to refresh in IE(6/7). In FF every thing updates and resends to the server just fine. Here is the code that makes it work.
the httpservice Code: <mx:HTTPService id="tempXML" resultFormat="e4x" result="onResult(event)" url="http://mysite.net/info_wrapper.php?customer={customer.text}&username={username.text}&password={password.text}" /> <mx:TileList dataProvider="{_xlcMyListData}" labelField="fleet" left="35" right="15" width="350" backgroundColor="#000000" color="#ff0000" fontSize="27" borderColor="#000000" columnWidth="315" rowHeight="50" themeColor="#808080" fontWeight="bold" allowMultipleSelection="true" id="TileList1" height="0" y="202" x="178"/> The Updater script Code: import mx.collections.XMLListCollection; [Bindable] private var _xlcMyListData:XMLListCollection; private function onResult(Event:ResultEvent):void { var xmlResult:XML = XML(Event.result); _xlcMyListData = new XMLListCollection(xmlResult..asset); } The refresh button Code: <mx:Button label="Refresh Page Now" height="27" fillAlphas="[1.0, 1.0]" fillColors="[#030000, #030000, #474545, #474545]" borderColor="#DCDEDF" click="tempXML.send();"/> Any Ideas?

