Re: Hibernate ClassCastException in GWT hosted mode only

2011-11-19 Thread jett
I'm facing the same issue and was suspecting a class loading issue. I thought I was inviting trouble when I would place the same Hibernate annotated class in both the server side code and the GWT client side, but until upgrading GWT 2.0 to GWT 2.4, I did not experience this ClassCastException

Re: GWT Developer Plugin is not found in Firefox

2010-12-30 Thread jett
Using the LD_DEBUG=libs, I learned firefox was attempting to load libnspr4.so.0d, but I wasn't running a 64-bit OS (I've got a Gentoo install). I was able to successfully link the file libnspr4.so.8 to the sought after name libnspr4.so.0d. Deleting the compreg.dat and a restart of firefox

Re: How to read POST parameters in GWT

2009-10-25 Thread jett
I'm fairly new to GWT as well and was trying to solve the same problem. I know you can pull out 'GET' parameters using a call like this: Window.Location.getParameter(token); Don't know if that is an option you can use. Jett On Oct 9, 2:55 pm, Sudeep S sudee...@gmail.com wrote: Hi, I am new