On 20 août, 09:34, Pascal <[email protected]> wrote: > So i am relatively new to GWT. i had some examples and stuff working > without a problem but right now i am experiencing a real strange > behaviour by GWT. > > I had a method called query(sql) that should retrieve a resultSet from > a database given the sql-String as a parameter. > Then the compiler threw an exception (which is perfectly fine) as i > had some syntax errors in there.I fixed these error but the strange > thing happening now is that GWT is still trying to use the old version > of the method with the errors. I tried a few other things but nothing > helped, so i tried to do some workaround and deleted the class of the > query() method. Said and done the real strange thing is that GWT still > tries to use the freaking query() method but its not there anymore. > > Any suggestions???
Have recompiled you Java (server-side) classes and redeployed them? (if you use a "standard" Eclipse project created with the Google Plugin for Eclipse, it should compile them to the appropriate place) If so, have you restarted the server (in the DevMode view/window, there's a button for that), or restarted the DevMode? Only client-side code is automatically taken into account on a browser refresh! -- 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.
