- Posted by Justin on October 13, 2008
I have been having issues with data in a Flex application not refreshing when configuration changes are made. I thought that the issue was related to IE caching since it works as expected if the check for newer versions of stored pages to Every time I visit the webpage. However, even when I put the meta http-equiv Expires tag to 0, it didn't fix the problem. It turns out that it is the Flash player that is caching the data. I found a fix at http://www.communitymx.com/content/article.cfm?cid=827EA .
var gateway:HTTPService = new HTTPService();
gateway.url = urlValue + "?cachebuster=" + new Date().getTime();