I am having the same issue but have already been using the
post method. When I click my refresh button or if the timer I have
set up resets I see no request made to the server.
private function onResult(Event:ResultEvent):void {
var myNum:int = Math.round(Math.random() * 2);
var xmlResult:XML = XML(Event.result);
_xlcMyListData = new XMLListCollection(xmlResult..asset);
}
<mx:HTTPService id="tempXML" resultFormat="e4x"
result="onResult(event)" method="POST" url="
http://mysite.net/info_wrapper.php?customer={customer.text}&userna me={username.text}&password={password.text}"
useProxy="false"/>
<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"/>
<mx:Button label="Refresh Page Now" height="27"
fillAlphas="[1.0, 1.0]" fillColors="[#030000, #030000, #474545,
#474545]" borderColor="#DCDEDF" click="tempXML.send();"/>