0

As pictured I see the following error when opening my page in IE9. I am on GWT 2.3.0 and IE9.

enter image description here

benstpierre
  • 32,833
  • 51
  • 177
  • 288

2 Answers2

0

Is there a <set-property> tag in your gwt.xml that restricts the values of the user.agent property? This message is generated by UserAgentAsserter as a sanity-check when the runtime configuration of the module doesn't line up with the user.agent values it was compiled with.

BobV
  • 4,143
  • 1
  • 18
  • 27
0

Add

<set-property name="user.agent" value="ie9" />

to your module description (gwt.xml).

z00bs
  • 7,518
  • 4
  • 34
  • 53