Re: [flexcoders] Caching issue

2012-06-29 Thread Alex Harui
There aren’t code examples because each app is unique. There is one example in the profiler post on my blog, but it may not relate to your app. On 6/29/12 2:44 AM, "kannan Mugundan" wrote: Hi Alex, Thanks for the information. I read your blog and many others related to module unloading

Re: [flexcoders] Caching issue

2012-06-29 Thread kannan Mugundan
Hi Alex, Thanks for the information. I read your blog and many others related to module unloading and it seem to be a lot of work. I am Java programmer, and I have decent knowledge in flex to create a simple CRUD application. But to unload the modules, I think it might require an expert knowledg

Re: [flexcoders] Caching issue

2012-06-28 Thread Alex Harui
You have to get the module to successfully unload before making the new request. Use the profiler to see why the module hasn't unloaded. On 6/27/12 9:48 PM, "kannan Mugundan" wrote: Hi, I have a flex application and I have designed each forms in my application as modules On menu click

[flexcoders] Caching issue

2012-06-27 Thread kannan Mugundan
Hi, I have a flex application and I have designed each forms in my application as modules On menu click I load my modules using module loader. Now I have manged to avoid caching of my flex application using the general work around like adding no cache tags and in the wrapper html I modifled t

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Guido
Thanks! I'll try that right away! Guido On 6/7/07, Christopher Olsen <[EMAIL PROTECTED]> wrote: Guido, I did it on the server side with my php script that generates the XML but I see HTTPService has a .headers That's a good place to look to see if you can specify it there. -Christopher

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Guido, I did it on the server side with my php script that generates the XML but I see HTTPService has a .headers That's a good place to look to see if you can specify it there. -Christopher Guido wrote: Is there a way to specify the HTTPService to no-cache mode? If I access the URL with a

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Guido
Is there a way to specify the HTTPService to no-cache mode? If I access the URL with a browser I can get the *real* destination with CTRL+F5... I don't know how to make an HTTPService use this kind of request; I don't even know if it is possible. Anyone? On 6/7/07, Christopher Olsen <[EMAIL PROTE

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Guido *Sent:* Thursday, June 07, 2007 10:22 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Caching issue in HTTPService I've had the same issue and I wasn't able to bypass it. In my case, I acces

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Yeah from my experiences with the flash player it appears that it uses the browser for network connections to fetch files... and the browser does the caching I have a poor workaround i modify the httpservice url and keep appending a timestamp to the url but there must be a better way? -Chri

RE: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Peter Farland
Can your script also set HTTP response no-cache and expires headers? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guido Sent: Thursday, June 07, 2007 10:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Caching issue in

Re: [flexcoders] Caching issue in HTTPService

2007-06-07 Thread Guido
I've had the same issue and I wasn't able to bypass it. In my case, I access an XML file throug HTTPService, and I always get the same XML even if I modify (or even delete!) the file from the server On 6/7/07, Christopher Olsen <[EMAIL PROTECTED]> wrote: Anyone ever have an issue where an HTT

[flexcoders] Caching issue in HTTPService

2007-06-07 Thread Christopher Olsen
Anyone ever have an issue where an HTTPService result gets cached? I'm use an httpservice to call a script which generates html however after the time run it's always returning the same results the *data* appears to be cached -Christopher