We came across this problem too, I was banging my head against the wall for hours.
I see some others solved it with filters, if you use apache you can mess with the headers via the Headers Module. Add the following to the httpd.conf: LoadModule headers_module modules/mod_headers.so ....... <Location /yourgwtapp/gwtRequest> Header set Cache-Control no-cache </Location> That will add set the headers for any response at that location. For us, that was the GWT Request Factory endpoint. On Saturday, September 22, 2012 11:17:10 PM UTC-7, KevMo wrote: > > I'm not sure how many people this will affect, but I thought I would send > out a heads up. Check out these posts for more information: > > http://stackoverflow.com/questions/12506897/is-safari-on-ios-6-caching-ajax-results > http://www.devthought.com/2012/09/22/understanding-the-ios6-ajax-bugs/ > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/qlbin9BcE3kJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
