click event completes in hosted mode but not once deployed?

2009-11-29 Thread darren
Hi Everyone In my web application i have some links that, when clicked are supposed to: - use an RPC to get some data from the server - construct a new Panel - insert the panel into the browser document My solution seems to work as expected while in hosted mode, but not once the application is

Re: click event completes in hosted mode but not once deployed?

2009-11-29 Thread darren
ok, I found my problem. In my client code, I had a try/catch expression that would ignore a NullPointerException when a Map entry was attepted that didn't exist. I replaced this, and my web app works as expected. On a similar note, does anybody have any javascript debugging tips for GWT? I have

Re: click event completes in hosted mode but not once deployed?

2009-11-29 Thread FKereki
NullPointerExceptions can become JavaScriptExceptions when going from hosted (development) mode to web (production) mode. Check out http://code.google.com/p/google-web-toolkit-doc-1-6/wiki/DevGuideJavaCompatibility On Nov 29, 5:07 pm, darren minof...@gmail.com wrote: ok, I found my problem.