无法使用smart GWT

无法使用smart GWT,gwt,smartgwt,gwt2,Gwt,Smartgwt,Gwt2,尝试使用smart GWT 使用从下面链接下载的smart gwt 2.5 火狐6.0 我做了一个小的web应用程序项目(没有smart GWT),运行良好 现在,在同一个项目中,我添加了smartGwt 2.5 并添加了 在myprojet.gwt.xml文件中 但现在,当我运行项目时,它会给我以下错误: [ERROR] [myprojet] - Unable to load module entry point class com.smartgwt.client.SmartGwtEntr

尝试使用smart GWT

使用从下面链接下载的smart gwt 2.5

火狐6.0

我做了一个小的web应用程序项目(没有smart GWT),运行良好

现在,在同一个项目中,我添加了smartGwt 2.5 并添加了
myprojet.gwt.xml
文件中

但现在,当我运行项目时,它会给我以下错误:

[ERROR] [myprojet] - Unable to load module entry point class 
com.smartgwt.client.SmartGwtEntryPoint (see associated exception for details)

com.google.gwt.core.client.JavaScriptException: (TypeError): $wnd.isc is undefined
at com.google.gwt.dev.shell.BrowserChannelServer.invo keJavascript(BrowserChannelServer.java:248)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke (ModuleSpaceOOPHM.java:136)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative( ModuleSpace.java:561)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeV oid(ModuleSpace.java:289)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNati veVoid(JavaScriptHost.java:107)
at com.smartgwt.client.SmartGwtEntryPoint.init(SmartG wtEntryPoint.java)
at com.smartgwt.client.SmartGwtEntryPoint.onModuleLoa d(SmartGwtEntryPoint.java:239)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(Module Space.java:396)
at com.google.gwt.dev.shell.OophmSessionHandler.loadM odule(OophmSessionHandler.java:200)
at com.google.gwt.dev.shell.BrowserChannelServer.proc essConnection(BrowserChannelServer.java:525)
at com.google.gwt.dev.shell.BrowserChannelServer.run( BrowserChannelServer.java:363)
at java.lang.Thread.run(Thread.java:662)
当我删除
myprojet.gwt.xml文件


XML



您的
gwt.xml
似乎是正确的


GWT编译和清理brwoser缓存应该可以工作。

您的
GWT.xml
似乎是正确的


GWT编译和清理brwoser缓存应该可以工作。

@HardikMishra plz请查看编辑的部分。编译项目并清理brwoser缓存,然后重试。@HardikMishra是的,它开始工作正常。。谢谢。很高兴听到这个消息。我把它作为答案加上去了。@HardikMishra请看编辑的部分似乎不错。编译项目并清理brwoser缓存,然后重试。@HardikMishra是的,它开始工作正常。。谢谢。很高兴听到这个消息。我把它作为答案加上去了。
<inherits name='com.google.gwt.user.User' />


<inherits name='com.google.gwt.user.theme.clean.Clean' />

<!-- Other module inherits -->

<inherits name="com.smartgwt.SmartGwt"/>
<!-- Specify the app entry point class. -->
<entry-point class='com.example.client.MyProjet' />

<!-- Specify the paths for translatable code -->
<source path='client' />
<source path='shared' />