a couple shots in the dark from the limited info-
1) web.xml vs module.gwt.xml
perhaps you have made a typo in the web.xml file. looks well formed
from here.
gwt.xml presumably looks like
<module>
<servlet
path ="/FrontEndService"
class ="proyect.server.FrontEndServiceImpl"
/>
</module>
2) what jvm tomcat is running under could cause your problem. if you
are running exclusively Java 1.5 on your server, then its not this.
if tomcat is running under Java 1.4, and the java components of your
webapp {in urWEBAPP/classes} are compiled under java 1.5,
it will fail with a major.minor version error.
if this odd circumstance fits you, you will need to upgrade jvm or
explicitly compile your servlet code under java 1.4.
On Feb 4, 3:30 pm, jamer <[email protected]> wrote:
> Hello
> I developed an application using the library 1.4, but I have adapted
> to the 1.5 library, and in the hosted mode it is ok, the compile and
> there is no problem using the code above.
> The problem is that when deployed in apache tomcat I get the HTTP 503
> ruling, saying that the application is not available. The bug appears
> when entering the web.xml configuration file. If I delete the web.xml
> I load the application and it is ok, but the call to server failed, it
> is logical.
>
> What happened?
>
> It is the web.xml file
>
> <web-app>
> <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>
> </web-app>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---