Hi,
I found your initial post on stackoverflow, and came here hoping for
answers...
I have the exact same problem you have, except it's under IE7. I have
no problem under IE8.
For me, the error comes from:
function entry0(jsFunction, thisObj, arguments_0){
var initialEntry;
initialEntry = entryDepth++ == 0;
try {
return jsFunction.apply(thisObj, arguments_0);
}
finally {
initialEntry && $flushFinallyCommands(($clinit_15() , INSTANCE));
--entryDepth;
}
}
If anyone has an idea about what part of the GWT can generate that
kind of code, it would help me find a work around more quickly.
On Jun 13, 6:48 pm, Xandel <[email protected]> wrote:
> Hi there,
>
> Hopefully you guys can help me. I have built a GWT application which
> runs perfectly in Firefox and Chrome.
>
> When attempting to load it up in Internet Explorer 8 I get the error
> from one of my generated cache.html files:
>
> Line: 408
> Char: 12
> Error: Exception thrown and not caught.
> Code: 0
>
> When I locate that line in the generated file (this was all done with
> the -PRETTY argument for easy reading) I find it's on this line where
> the finally is at:
>
> function entry0(jsFunction, thisObj, arguments_0){
> var initialEntry;
> initialEntry = entryDepth++ == 0;
> try {
> return jsFunction.apply(thisObj, arguments_0);
> }
> finally {
> initialEntry && $flushFinallyCommands(($clinit_16() , INSTANCE));
> --entryDepth;
> }
>
> }
>
> The problem is that this is not code generated from my client side
> java - it seems to be GWT's own generated code.
>
> As a test I added an empty catch block - that now stops Internet
> Explorer from complaining but still doesn't load my application up at
> all. All that loads is the surrounding html and images and a blank
> space where my app should be.
>
> Has anyone experienced this before? Any ideas on how to tackle this?
>
> Any information will be greatly appreciated!
>
> Thanks in advance,
>
> Xandel
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" 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/google-web-toolkit?hl=en.