On Tue, Dec 13, 2011 at 10:42 AM, Amy <[email protected]> wrote: > Service method 'public abstract java.lang.String > > com.ericsson.authentication.client.AuthenticationService.authenticate(java.lang. > String,java.lang.String)' threw an unexpected exception: > java.lang.NoClassDefFoundError: java.net.Socket is a restricted class. > Please see the Google App Engine developer's guide for more details.. >
The driver you are using is attempting to open a socket, which is normal, but you're running in an App Engine environment, where this is not allowed. Dev Mode uses the App Engine SDK by default, so if you're not going to be deploying onto App Engine, you'll need to configure it to use a different setup. This might help: http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#How_do_I_use_my_own_server_in_development_mode_instead_of_GWT's -- 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.
