So I added <add-linker name="xsiframe" /> to the Circulus.gwt.xml module so that I can run the compiled version locally in chrome. Compiling with log level info and output style detailed.
Getting this circulus.nocache.js: http://dl.dropbox.com/u/6174666/circulus.nocache.js And the following uncaught errors: Uncaught #<Object> (anonymous function) Circulus.html:269 gwtOnLoad Circulus.html:7967 (anonymous function) Circulus.html:7973 installCode circulus.nocache.js:115 circulus.onScriptDownloaded circulus.nocache.js:121 onBodyDone circulus.nocache.js:86 script.language circulus.nocache.js:104 I'm having a difficult time deciphering what is wrong. I've looked through the code that I added but can't find errors with anything that related to casting. The code working as it should in dev mode also seems to indicate that there is nothing wrong with what I've been doing? Any help would be greatly appreciated :c //Oliver On Aug 14, 12:50 am, Shawn Brown <[email protected]> wrote: > Hi, > You can see what that is like here: > > >http://3.michaeltyack.appspot.com > > Look at firebug or the web inspector in safari or chrome and look for > errors in the console. > > It shows an error stemming from this code in > 909C8695A83550446C89538CB145ACB1.cache.html:1486[object Object]: > > function dynamicCast(src, dstId){ > if (src != null && !(src.castableTypeMap$ && src.castableTypeMap$[dstId])) { > throw new ClassCastException_0; > > } > return src; > > } > > So I would look through your changes and see if there is anywhere you > might be doing something that is causing the app to throw this > ClassCastException. > > Shawn -- 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.
