views:

49

answers:

1

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

+2  A: 

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.

James Ward
Thanks for the info - exactly what I needed!
Franky-D