It maybe that the browser is caching the AMF requests?

Maybe you could write a Servlet Filter that added no cache headers to the
response before the AMFGatewayServlet sent back data to the client? (AMF
data is sent over HTTP so cookies and headers should still work).


HttpServletResponse res

...

res.setHeader("Cache-Control", "no-cache");
res.setDateHeader("Expires", 946080000000L); //Approx Jan 1, 2000
res.setHeader("Pragma", "no-cache");




-----Original Message-----
From: Wilfred LEUNG [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 24, 2005 9:59 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] amfgateway



Hi

I am tuning my applications at this moment.
When I check the temp files directory of the internet explorer, I found a
file named "amfgateway" of size >300K. The amount appears to download
eveytime the IE access the site.

I am trying to understand what this file is for and best if possible, trim
this file in size.

See if anyone of you can help. Thanks

Wilfred




Yahoo! Groups Links








Reply via email to