In other words: Can I respond with a 304 and have it "just work"?

link|improve this question

Isn't AMF a binary data format? How can a format support caching? I believe if you want to cache data, you'll have to implement such caching mechanisms yourself. – www.Flextras.com Sep 30 '10 at 14:48
1  
Yes, AMF is a binary format, but it is transported via HTTP - which means I should be able to use built-in browser caching using HTTP headers to control expiration. I'm just not sure if this works with any of the AMF libraries. – Franky-D Sep 30 '10 at 15:03
feedback

1 Answer

up vote 3 down vote accepted

By default Flex's RemoteObject and BlazeDS handle AMF requests as POSTs so they won't cache in the browser. You could change that by implementing your own servlet that serializes GET responses as AMF. Then on the Flex side use URLLoader to make the request. That might cause the browser to cache the response.

link|improve this answer
Thanks for the info - exactly what I needed! – Franky-D Sep 30 '10 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.