Re: [flexcoders] how to avoid cacheing XML

2009-04-17 Thread David Pariente
Thnx, I was wondering if there was a not so ugly technic for do that...reminds me my old times with AS...seems nothing changed...wonder why there is a tool for do so in AIR while there is not in FLEX En/na Maciek Sakrejda ha escrit: The foolproof (albeit ugly) way of doing this is to

Re: [flexcoders] how to avoid cacheing XML

2009-04-17 Thread Maciek Sakrejda
Flex is at the mercy of the browser when it comes to things like HTTP request caching. -Original Message- From: David Pariente xxmapach...@yahoo.es Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how to avoid cacheing XML Date: Fri, 17 Apr

RE: [flexcoders] how to avoid cacheing XML

2009-04-17 Thread Tracy Spratt
services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Maciek Sakrejda Sent: Friday, April 17, 2009 12:00 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how to avoid cacheing XML Flex is at the mercy of the browser when

RE: [flexcoders] how to avoid cacheing XML

2009-04-17 Thread Maciek Sakrejda
parameter, but whatever floats your boat. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Tracy Spratt tspr...@lariatinc.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] how to avoid cacheing XML Date: Fri, 17 Apr

Re: [flexcoders] how to avoid cacheing XML

2009-04-16 Thread Maciek Sakrejda
The foolproof (albeit ugly) way of doing this is to append a dummy variable, e.g., the current time, to your request: http://localhost/myapp/my.xml?time=128478334 You can do this by adding a Date().getTime() parameter to your URLVariables. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com