Hi,
I m Rakesh. I m developing a GWT based eclipse project.The project is
about sensor web application for Buoys n i used google maps to display the
Buoy locations.For this the GWT i m using is 2.0.3, eclipse is 3.4 Ganemade
n Tomcat is 5.5.9. Recently I have upgraded the Sensor Web project from gwt
1.4.62 to 2.0.3. I m able to get the application in the web browser but i m
unable to update the database into PostgreSql {version is 8.2.}
My *Web.xml* is shown below
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<servlet>
<servlet-name>BuoyDataService</servlet-name>
<servlet-class>edu.msstate.gri.server.BuoyDataServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>BuoyDataService</servlet-name>
<url-pattern>/buoyapplication/buoyDataService</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>BuoyApplication.html</welcome-file>
</welcome-file-list>
</web-app>
And my *gwt.xml* file is given below
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='buoyapplication'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<inherits name='com.google.gwt.user.theme.standard.Standard'/>
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<inherits name='com.google.gwt.http.HTTP'/>
<inherits name='com.google.gwt.xml.XML'/>
<inherits name='com.google.gwt.json.JSON'/>
<inherits name='com.google.gwt.widgetideas.WidgetIdeas'/>
<inherits name='com.mapitz.gwt.googleMaps.GoogleMaps'/>
<inherits name='com.google.gwt.visualization.Visualization'/>
<!-- Other module inherits -->
<!-- Specify the app entry point class. -->
<entry-point class='edu.msstate.gri.client.BuoyApplication'/>
<!-- Specify the paths for translatable code -->
<source path='client'/>
</module>
When I start my Tomcat I m getting the
"End event threw exception" in startup window and following this another
error " Parse error in application web.xml"
Is there any error in my* web.xml file*.........Plz help me
Thanks in advance,
Rakesh.
--
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.