Hello, Here is my problem : when I deploy my project on jboss I have an error "$wnd.ext is null or is not an object" using Internet Explorer. When I execute my projet with gwt's tomcat it works fine.
My configuration files : MyProject.html <html> <head> <title>MyProject</title> <meta name='gwt:module' content='fr.MyProject> < link rel=stylesheet type="text/css" href="myProject.css"> <script language='javascript' src='fr.MyProject.nocache.js'></script> </head> <body> <script language="javascript" src="gwt.js"></script> <iframe src="javascript:''" id="__gwt_historyFrame" style="width: 0; height: 0; border: 0"></iframe> </body> </html> and the MyProject.gwt.xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <module> <inherits name="com.google.gwt.user.User" /> <inherits name='com.gwtext.GwtExt' /> <inherits name='com.gwtextux.GwtExtUx' /> <source path="client" /> <entry-point class="fr.myProject.client.MyProject" /> <link rel="stylesheet" type="text/css" href="js/ext/resources/css/ ext-all.css" /> <script type="text/javascript" src="js/ext/ext-all.js"></script> <script type="text/javascript" src="js/ext/ext-core.js"></script> <script type="text/javascript" src="js/ext/adapter/ext/ext-base.js"></ script> <script type="text/javascript" src="js/ext/adapter/yui/yui- utilities.js"></script> <script type="text/javascript" src="js/ext/adapter/yui/ext-yui- adapter.js"></script> <servlet class="fr.myProject.server.test.LoginServiceImpl" path="/ loginService" /> <servlet class="fr.myProject.server.test.UserServiceImpl" path="/ userService" /> <servlet class="fr.myProject.server.test.CategoryServiceImpl" path="/ categoryService" /> <servlet class="fr.myProject.server.test.CommentServiceImpl" path="/ commentService" /> <servlet class="fr.myProject.server.test.PostServiceImpl" path="/ postService" /> </module> I use ext-2.2, gwtextux-0.3.0 and gwtext1.0.2. The jboss is a 4.2.2.GA. Thanks for all your help in advance. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GWT-Ext Developer Forum" group. 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/gwt-ext?hl=en -~----------~----~----~----~------~----~------~--~---
