The problem I still had was in web mode in combination with tomcat. 
Since it is not easy to control the Classloader in tomcat the 
gwt-servlet.jar was always loaded prior to my jar named owhatever.jar. 
I figured out that tomcats classloader order is alway alphabetic so that 
g*.jar is always loaded prior to o*.jar. 
So the 
com.google.gwt.user.client.rpc.core.java.util.Date_CustomFieldSerializer 
class was always token from gwt-servlet.jar. 
To Solve this one could either rename the jars to be loaded in the desired 
order which I did not like since this might be implementation dependent or 
to include the code from gwt-servlet.jar except of the 
Date_CustomFieldSerializer class within my owhatever.jar which I finally 
did!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/t2uX8xibX-sJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to