[flexcoders] Caching problem with HttpSevice

2008-07-11 Thread nehavyas13
Hi, I am trying to call a url by using HTTPService. Hitting this url passing two parameters, starts/stops a service. This is working fine when I try to do it locally. But when I put it on the server it does not work at all. It worked yesterday 1-2 times but after that it does not work. I have

[flexcoders] Caching Problem..Changing Browsers Doesn't Help either

2007-10-17 Thread tarun chandra
Hi All, Please take some time out to answer this Flex Beginners questions: 1. I made some changes to my index.mxml and built my project o compile the index.swf, after I start my tomcat server and try to access my homepage (index.swf) I am still seeing the old version of my index.swf. I tried

Re: [flexcoders] Caching Problem..Changing Browsers Doesn't Help either

2007-10-17 Thread Tom Chiverton
On Wednesday 17 Oct 2007, [EMAIL PROTECTED] wrote: compile the index.swf, after I start my tomcat server and try to access my homepage (index.swf) I am still seeing the old version of my index.swf. Maybe it's not being compiled and/or copied correctly. Can you verify the change date on the

[flexcoders] Caching problem

2007-03-14 Thread Alex
Hi there! I have an xml file that needs to be loaded eventually using a URLRequest. I'm trying to avoid loading a cached file using these headers: urlRequest.requestHeaders.push(new URLRequestHeader(Cache- Control, no-cache, no-store, max-age=0, must-revalidate));

Re: [flexcoders] Caching problem

2007-03-14 Thread slangeberg
With Flash, I've learned to do the lo-tech method of attaching random numbers to the path. Simple, but it's been effective!: url:String = resource + ?rand= + Math.floor(Math.random() * 10); -Scott On 14 Mar 2007 08:07:52 -0700, Alex [EMAIL PROTECTED] wrote: Hi there! I have an xml