Using GWT, I have deployed my server into Tomcat. This works fine, but when GWT throws an exception, a Popup shows the client the
This works as expected, because the optimaziation will remove the method and class names.
You can compile as PRETTY or DETAILED, to get better readable Stacktraces.
There is also the posibility to emulate Stacktraces.
This is a bad idea for production use, because it will increase the size of your javascript.
update: I see a Exception_FieldSerializer Exception.
Do you try to serialize something, which is not serializable?
Classes, without a default constructor are not serializable, Classes which aren't within your client or shared package. If you try to serialize an Exception this can be the problem.