Serialization Error.... why??????

2011-12-08 Thread francescoNemesi
Hi, when serializing an ArrayList of the bean below I get the following error Caused by: com.google.gwt.user.client.rpc.SerializationException: Type 'xxx.CurrentLevel' was not included in the set of types which can be serialized by this SerializationPolicy or its Class object could not be

Re: Serialization Error.... why??????

2011-12-08 Thread francescoNemesi
Thanks for your reply, I am in dev mode with the internal Jetty I deleted all .rpc files, but the problem persists... On Dec 8, 12:07 pm, Jens jens.nehlme...@gmail.com wrote: Seems like your serialization policy file on your server is outdated (thats the hashcode.rpc file in your generated

Re: GWT 2.2 Eclipse update fails -- needs PDE

2011-02-17 Thread francescoNemesi
I have the same problem, but I must use 3.4 for compatibility with other plugins... could you please investigate and fix? Thank You On Feb 16, 11:30 pm, Tim McCormack ti...@ccs.neu.edu wrote: On Feb 16, 11:11 am, Rajeev Dayal rda...@google.com wrote: Is it possible for you to try using

Re: GWT + Hibernate problem (Unknown entity exception)

2010-08-19 Thread francescoNemesi
You can't do it directly, you need to use something like http://sourceforge.net/projects/gilead/ A good reference article for GWT and Hibernate http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html Hope it helps, F On Aug 19, 5:11 am, awate...@gmail.com awate...@gmail.com

Re: GWT + Hibernate problem (Unknown entity exception)

2010-08-19 Thread francescoNemesi
You can't do it directly, a good reference: http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html http://noon.gilead.free.fr/gilead/ Regards, F On Aug 19, 5:11 am, awate...@gmail.com awate...@gmail.com wrote: is com.bancika.client.data.User annotated with �...@entity?

Jetty: Form too large in dev mode

2010-08-03 Thread francescoNemesi
Hello there, I get the error below Form too large28050420 in dev mode. I looked for this error on Google and found that this problem can be fixed by setting the org.mortbay.http.HttpRequest.maxFormContentSize property to a value higher than the default (20). How can I do this in the

gwt.xml file extensive documentation and dtd

2010-05-07 Thread francescoNemesi
Hi there, I could not find an extensive and complete document that details and explains all the available elements and attributes of a gwt.xml file. Could you please help/point to such a document? Thanks for your help, Regards Francesco -- You received this message because you are subscribed

Best practice for packaging a module into a jar?

2010-03-17 Thread francescoNemesi
Hi, I have a complex GWT application which is dependent on various other GWT projects which are inherited. The application contains both server and client code and it also uses external properties files. I would like to package this application into a jar which can then be inherited by other

Re: GWT2.0 and GWTx propertychangesupport

2010-01-09 Thread francescoNemesi
, 6:05 am, francescoNemesi nem...@yahoo.com wrote: Hi All, my (rather huge) GWT application relies heavily on theGWTx implementation of propertyChangeSupport. This doesn't seem to work anymore with GWT 2.0. In development mode, I get this error: 14:40:55.873 [WARN] [kbit] Warnings

GWT2.0 and GWTx propertychangesupport

2009-12-30 Thread francescoNemesi
Hi All, my (rather huge) GWT application relies heavily on the GWTx implementation of propertyChangeSupport. This doesn't seem to work anymore with GWT 2.0. In development mode, I get this error: 14:40:55.873 [WARN] [kbit] Warnings in 'jar:file:/D:/GWT/gwt-keinavo-

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-16 Thread francescoNemesi
? When you upgraded the plugin, did you do so with a zip file, or using the update site? Did you update your GWT SDK as well? Rajeev On Thu, Oct 15, 2009 at 11:43 PM, francescoNemesi nem...@yahoo.com wrote: For Your Information, I reverted back to my previous Eclipse configuration

Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread francescoNemesi
Hello, I am using Eclipse 3.3.2, this morning I updated the Google eclipse plugin to 1.1.2.v200910130758 and I have a problem. Eclipse does not build my Google (I only GWT) projects anymore. It behaves as if it builds the project, does not give any error, but there no .class files in my classes

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread francescoNemesi
errors are there?  You can find it in your WORKSPACE_DIR/.metadata/.log. On Thu, Oct 15, 2009 at 11:51 AM, francescoNemesi nem...@yahoo.com wrote: Hello, I am using Eclipse 3.3.2, this morning I updated the Google eclipse plugin to 1.1.2.v200910130758 and I have a problem. Eclipse does

Re: Google Project Build fails silently after installing eclipse plugin 1.1.2.v200910130758

2009-10-15 Thread francescoNemesi
For Your Information, I reverted back to my previous Eclipse configuration with gwt plugin version 1.1.1v200909221731 and everything seems to work now. Apparently there is a problem with version 1.1.2.v200910130758? On Oct 15, 9:08 pm, francescoNemesi nem...@yahoo.com wrote: Hi Miguel

Re: Listening for browser window close or unload events

2009-10-09 Thread francescoNemesi
or Window.addCloseHandler On Oct 7, 11:35 am, francescoNemesi nem...@yahoo.com wrote: Hi, is there a way to listen to a browser window or unload event? I want to force a logout (to clean up session memory on the server as well as much as I can on the client) if the user forgets to logout

Re: ClosingHandler to prevent user from navigating away

2009-10-09 Thread francescoNemesi
Is there a way to post process user confirmation of the confirmation message box? Thanks On Oct 8, 8:49 pm, Marcelo Sena marceloslace...@gmail.com wrote: Thanks, that solves the problem. --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Wiping application memory on the broser after user logout or window/tab close

2009-10-07 Thread francescoNemesi
Thanks, I knew that... I ìm looking for workarounds. Thanks again On Oct 7, 9:07 am, alex.d alex.dukhov...@googlemail.com wrote: You can't trigger browser's garbage collector. On Oct 7, 7:23 am, francescoNemesi nem...@yahoo.com wrote: Hi, my application has a logout button. When

Wiping application memory on the broser after user logout or window/tab close

2009-10-06 Thread francescoNemesi
Hi, my application has a logout button. When the user logs out the application invalidates and cleans up the HttpSession on the server side. I would like to do the same on the client, i.e. I would like to clean up all (or as much as possible) the memory used by the application on the client

Incubator: ScrollTable

2008-12-21 Thread francescoNemesi
Hello, I have been using the ScrollTable widget (com.google.gwt.gen2.table.client.ScrollTable) in the incubator and I find it very useful. I need to add a Row Header section which contains fixed columns that do not move when scrolling horizontally. I have studied the AbstractScrollTable

Re: SmartGWT 1.0 Released

2008-11-23 Thread francescoNemesi
Hello, smartGwt looks very appealing and very rich in features, but it is very slow. This is due to the fact that it is a JSNI wrapper around the Smart Client framework. This means loosing all the benefits of having a pure GWT implementation (I will not go into details on this). I think a

Re: Observer pattern on this design, yes or no/how and why?

2008-11-18 Thread francescoNemesi
You use GWTx http://code.google.com/p/gwtx to use PropertyChangeSupport events. If used cleverly this allows event handling among various modules, i.e. a module could send a PropertyChangeEvent of a given named property and another module could listen for it and execute accordingly. Just an

Re: Event driven communication between independent GWT modules

2008-11-06 Thread francescoNemesi
Hello, I've been doing exactly what JEA asks using GWTx (http:// code.google.com/p/gwtx/)... it extends GWT to use java.beans.PropertyChange* which implement all that's needed for the Observer and clientside MVC patterns. As an example for JEA's request you could implement a user model that

Re: GWT Conference?

2008-11-04 Thread francescoNemesi
Thanks for this link, very useful! On Nov 3, 5:36 pm, Isaac Truett [EMAIL PROTECTED] wrote: There were several excellent sessions on GWT at Google I/O back in May. Video and slides from sessions are available on the Google I/O web site below. http://sites.google.com/site/io/ On Mon, Nov

Re: RPC error with MapString, String

2008-11-01 Thread francescoNemesi
I have been having the very same warning on my code since I installed GWT1.5.2. It never caused the application to fail, though On Oct 31, 7:17 pm, walden [EMAIL PROTECTED] wrote: Ian, Actually, that OrderedConstantSet is an extension of HashMapString,String, so changing to HashMap isn't

Re: GWT 1.5.2 - gwt-user.jar errors

2008-09-12 Thread francescoNemesi
I did... thank you On Sep 12, 2:44 pm, Thomas Broyer [EMAIL PROTECTED] wrote: On 12 sep, 12:08, francescoNemesi [EMAIL PROTECTED] wrote: Hi there, I have upgraded to GWT 1.5.2 and when running in hosted mode (only mode I tried), I get many gwt-user.jar errors, the first ones are shown