It is the gwt.xml
<module>
<inherits name='com.google.gwt.user.User'/>
<inherits name='com.google.gwt.xml.XML'/>
<inherits name='com.google.gwt.i18n.I18N'/>
<inherits name='org.hanson.gwt.widgets.WidgetLibrary'/>
<inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>
<entry-point class='proyect.client.Main'/>
<servlet path="/FrontEndService"
class="proyect.server.FrontEndServiceImpl"/>
</module>
In apache tomcat i use java 1.5 and i compile with java 1.6, because
apache tomcat not running with java 1.6, and i don't understand it.
Thank you
On 5 feb, 09:23, Lothar Kimmeringer <[email protected]> wrote:
> 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
-~----------~----~----~----~------~----~------~--~---