Hello all I am using Tapestry 5.0.19 with the java app engine SDK 1.4.0. When I attempt to access the local datastore admin tool at http://localhost:8888/_ah/admin, the result is that the request is sent to tapestry and the home page is displayed. It would be convenient to be able to use the datastore admin tools.
I am guessing the problem is caused by my web.xml file somehow, but I don't fully understand how. Thank you for any possible insights into my issue. My web.xml looks like this: <?xml version="1.0" encoding="utf-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <context-param> <param-name>tapestry.app-package</param-name> <param-value>com.javagwtapp</param-value> </context-param> <filter> <filter-name>app</filter-name> <filter-class>org.apache.tapestry5.TapestryFilter</filter-class> </filter> <filter-mapping> <filter-name>app</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app> -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" 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-appengine-java?hl=en.
