Issue Details (XML | Word | Printable)

Key: EFJC-9
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Bahdanau, Ivan
Reporter: Kashynski, Maksim
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Exadel Fiji

Fiji 1.0 Charts doesn't work correctly in IE8

Created: 25/Aug/10 08:44 AM   Updated: 12/Jan/11 08:46 AM
Component/s: None
Affects Version/s: 2.0
Fix Version/s: 2.1

Time Tracking:
Not Specified

Environment: Fiji 1.0


 Description  « Hide
This issue occurs in 1.0 but 2.0 may be affected as well.
Response sent from endpoint doesn't include any caching-related information, hence IE8 caches it, and if SWF component requests a new data portion, cached data is provided instead.

Fixed that by adding caching-related headers to the response in com.exadel.fiji.lifecycle.FijiPhaseListener.

                    response.addHeader("Pragma", "no-cache");
                    response.addHeader("Cache-Control", "no-cache");
                    // Stronger according to blog comment below that references HTTP spec
                    response.addHeader("Cache-Control", "no-store");
                    response.addHeader("Cache-Control", "must-revalidate");
                    // some date in the past
                    response.addHeader("Expires", "Mon, 8 Aug 2006 10:00:00 GMT");

Please check on your side if it also applies to current version...

There are no comments yet on this issue.