I'm not getting any error (at least I'm not seeing any in the ie developer tools), maybe it is timeout, don't know.
Looking at the requests the page makes:
- When I dont use <meta http-equiv="X-UA-Compatible" content="IE=8"/>: (the charts doesnt load)
URL Method Result Type Received Taken Initiator Wait Start Request Response Cache read Gap
http://127.0.0.1:8888/VisualizationTest.html?gwt.codesvr=127.0.0.1:9997 GET 200 text/html 2,85 KB 47 ms 0 31 0 16 0 1872
/VisualizationTest.css GET 200 text/css 0,74 KB 15 ms 47 0 0 15 0 1857
/visualizationtest/visualizationtest.nocache.js GET 200 application/x-javascript 5,46 KB 15 ms 47 0 0 15 0 1857
/visualizationtest/hosted.html?visualizationtest GET 304 text/html 113 B 15 ms 94 0 0 15 0 1810
http://www.google.com/jsapi?callback=__gwt_AjaxLoader_onLoad GET 304 text/javascript 273 B < 1 ms 1919 0 0 0 0 0
- When I use <meta http-equiv="X-UA-Compatible" content="IE=8"/> and clear ie's history (the chart works, but only after clearing history. If I reaload the page it doesnt work, if I clear history and reload it wotks for one more time xD):
URL Method Result Type Received Taken Initiator Wait Start Request Response Cache read Gap
http://127.0.0.1:8888/VisualizationTest.html?gwt.codesvr=127.0.0.1:9997 GET 200 text/html 2,84 KB 16 ms 0 0 0 16 0 3775
/VisualizationTest.css GET 200 text/css 0,74 KB 16 ms 16 0 16 0 0 3759
/visualizationtest/visualizationtest.nocache.js GET 200 application/x-javascript 5,46 KB 16 ms 16 0 0 16 0 3759
/visualizationtest/hosted.html?visualizationtest GET 200 text/html 11,36 KB 125 ms 203 0 125 0 0 3463
http://www.google.com/jsapi?callback=__gwt_AjaxLoader_onLoad GET 200 text/javascript 22,38 KB 484 ms 1872 0 468 16 0 1435
http://www.google.com/uds/?file=visualization&v=1&packages=piechart&async=2 GET 200 text/javascript 0,87 KB 436 ms 2372 0 436 0 0 983
http://www.google.com/uds/api/visualization/1.0/f69f84183e0a26bd11ae36e170d1f22b/default,browserchart,piechart.I.js GET 200 application/x-javascript 226,11 KB 0.98 s 2808 0 312 671 0 0
As you can see, when it works there are 2 more request to load the javascript charts api. When it doesn't there is just the first request to google that I don't know the exact meaning. Any hints?
Thanks!
Luca