Re: [flexcoders] HTTPService not updating...

2010-08-17 Thread dorkie dork from dorktown
it's prob accessing it from the cache. instead of this, url="reports/xml/{_reportInfo.fileName}.xml" use this: url="reports/xml/{_reportInfo.fileName}.xml?time={getTimer()}" that snippet might not be bindable so add the time in code whenever you access that file On Tue, Aug 17, 2010 at 6:17 PM,

Re: [flexcoders] HTTPService not updating...

2010-08-17 Thread Jake Churchill
It might be getting cached.  Try adding a timestamp to the end of the url (ie url/myfile.xml?timestamp={currentTimeStamp} ). Before you all the .send() method, reset the timestamp variable to the current time.   -Jake -- Sent from my Palm Pre On Aug 17, 2010 6:23 PM, Laurence

[flexcoders] HTTPService not updating...

2010-08-17 Thread Laurence
Ok. I have the following HTTP Service declared: In the init() function (which is called when the 'show' event happens, because the page it's on happens to be part of a ViewStack) I have the following line: reportDataRPC.send(); This loads the data from the .xml file and in the "rdHandler" func

RE: [flexcoders] HTTPService not updating tilelist itemrenderer

2007-01-29 Thread Tracy Spratt
meathead Sent: Monday, January 29, 2007 4:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] HTTPService not updating tilelist itemrenderer Hi all, I've searched and searched and I can't figure this out. I've got a HTTPService to call XML from a SQL Server database

[flexcoders] HTTPService not updating tilelist itemrenderer

2007-01-29 Thread meathead
Hi all, I've searched and searched and I can't figure this out. I've got a HTTPService to call XML from a SQL Server database and populate a TileList with LinkButtons using an itemrenderer. This works peachy keen. I am also able to click a button and add an entry to my database. This also w