I created a GWT project using Eclipse that worked perfectly (I was able to run it in both Hosted mode and the Google Engine application) until I tried to import the Gears API for the Google Web Toolkit . After adding the following line to the java source file:
import com.google.gwt.gears.client.geolocation.Geolocation;
When trying to compile the following error:
19-Jun-2009 3:36:09 AM com.google.apphosting.utils.jetty.JettyLogger warn WARNING: failed com.google.apphosting.utils.jetty.DevAppEngineWebAppContext@1c7d682{/,C:\Documents and Settings\Geoff Denning\workspace\TaskPath\war} javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.SAXParserFactoryImpl not found
I already added the gwt-gears.jar file to the \ war \ WEB-INF \ lib directory, and I referenced it in Eclipse as follows:
Java build path in Eclipse http://i41.tinypic.com/148klk4.png
I even opened the gwt-gears.jar file and confirmed that org / apache / xerces / jaxp / SAXParserFactoryImpl.class exists. Can someone give me any guidance as to why I am getting the above error?
java gwt xerces
Templar
source share