[flexcoders] HTTPService not updating...

2010-08-17 Thread Laurence
Ok. I have the following HTTP Service declared: mx:HTTPService id=reportDataRPC url=reports/xml/{_reportInfo.fileName}.xml result=rdHandler(event); fault=rpcFaultHandler(event);/ In the init() function (which is called when the 'show' event happens, because the page it's

Re: [flexcoders] HTTPService not updating...

2010-08-17 Thread Jake Churchill
It might be getting cached. nbsp;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. nbsp; -Jake -- Sent from my Palm Pre On Aug 17, 2010 6:23 PM, Laurence

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,

[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

RE: [flexcoders] HTTPService not updating tilelist itemrenderer

2007-01-29 Thread Tracy Spratt
Of 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 and populate