Bonjour à tous.

J'utilise pour un projet la version 2.1.0 de GWT et je rencontre actuellement un soucis avec la version de mon application sous Internet Explorer (8 sur ma machine).

En fait, c'est bien simple, mon application ne s'affiche tout simplement pas .
Pour être plus précis, le code source de la page est bien là et le voici:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <link type="text/css" rel="stylesheet" href="hello.css">
 
    <title>My site</title>
 
    <!--                                           -->
    <!-- This script loads your compiled module.   -->
    <!-- If you add any GWT meta tags, they must   -->
    <!-- be added before this line.                -->
    <!--                                           -->
    <script type="text/javascript" language="javascript" src="mysite/mysite.nocache.js"></script>
  </head>
 
  <body>
 
    <!-- OPTIONAL: include this if you want history support -->
    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
 
  </body>
</html>
Le lien vers le fichier mysite.nocache.js est correct mais me semble fort court:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
function mysite(){var Q='',wb='" for "gwt:onLoadErrorFn"',ub='" for "gwt:onPropertyErrorFn"',db='"><\/script>',fb='#',Vb='.cache.html',hb='/',Ob='29DBA20301D4BB9D2EC2ACAA913A5C12',Pb='90BE6B82C304FF478409839C4FAF5F48',Ub=':',ob='::',bc='
Je n'ai aucun problème avec les autres navigateurs, Chrome, Firefox etc...

Pour finir je vous donne mon gwt.xml

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.6.4//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.6.4/distro-source/core/src/gwt-module.dtd">
<module rename-to='mysite'>
  <!-- Inherit the core Web Toolkit stuff.                        -->
  <inherits name='com.google.gwt.user.User'/>
 
  <!-- Inherit the default GWT style sheet.  You can change       -->
  <!-- the theme of your GWT application by uncommenting          -->
  <!-- any one of the following lines.                            -->
  <inherits name='com.google.gwt.user.theme.standard.Standard'/>
  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
  <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->
 
  <!-- Other module inherits                                      -->
 
  <!-- Specify the app entry point class.                         -->
  <entry-point class='mysite.web.client.MySITE' />
 
  <source path='client' />
  <source path='uibinder' />
 
</module>
Je vous remercie d'avance.