0

Am getting the below exception once the module is loaded in the browser. but the functionality is not blocking only getting 4 script errors similarly. Can anybody help on this?

13:47:07.196 [ERROR] [com.manoj.Account] Uncaught exception escaped
com.google.gwt.core.client.JavaScriptException: (Error): Unspecified error.
 number: -2147467259
 description: Unspecified error.
    at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:237)
    at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:129)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
    at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
    at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
    at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
    at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:214)
    at sun.reflect.GeneratedMethodAccessor72.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
    at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
    at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
    at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:281)
    at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:531)
    at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:352)
    at java.lang.Thread.run(Unknown Source)
6
  • 1
    What are the 4 script errors? Commented Jun 30, 2011 at 8:53
  • Have you tried setting a break point and stepping through your entry point code using the eclipse debugger? Commented Jun 30, 2011 at 14:06
  • @jason: description came in alert as "unspecified errors", but the functionality is not breaking! Commented Jun 30, 2011 at 16:04
  • @Eric: yes on debugging after adding the module in the root panel, the debug point goes to nativeMethodAccesor,BrowserChanelServer built in classes, exception not generated from my code written! Commented Jun 30, 2011 at 16:07
  • anybody can you help me on this? Commented Jul 25, 2011 at 10:41

2 Answers 2

1

Had the same thing here. Resolved it by replacing the Image (<img>) with a Label (<div>) and gave it a background-image style property. Adding and removing the Label from the dom does not throw the exception in IE.

Sign up to request clarification or add additional context in comments.

Comments

0

I am also got this exception, i resolved this. In my case i am removing image from parent while doing this in IE8 GWT runing a thread for changing the proeprites on the image that time it is throwing exception. so instead of removing i just made it hidden, it is resolved

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.