jamer schrieb: > It is the web.xml file > > <web-app>
Does it start that way? If yes, the xml- and doctype-declaration misses and you should add <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd"> > <servlet> > <servlet-name>FrontEndService</servlet-name> > > <servlet-class>proyect.server.FrontEndServiceImpl</servlet-class> > </servlet> > <servlet-mapping> > <servlet-name>FrontEndService</servlet-name> > <url-pattern>/FrontEndService</url-pattern> > </servlet-mapping> There also misses the welcome-file-list, otherwise the server looks for (most likely) "index.html". You should add <welcome-file-list> <welcome-file>FrontEndService.html</welcome-file> </welcome-file-list> In addition to that you should have a look into the logfiles of the server. A 500-error means that something bad happened on the server side. Maybe the message in the browser is not the full truth and there is some problem reading resources of the web-application the server is only writing into the log and not telling the client. Regards, Lothar --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
