I commented out the filter in the web.xml file and I have the same
problem, so it is not the filter.

Basically I am using the default GWT program when you install the
Google plug-in for Eclipse, and i just enable OpenID in the
application dashboard. Is there something else I have to do to get
OpenID to work.

Below is my web.xml

<?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>

  <!-- Filters -->


<!--   <filter> -->
<!--     <filter-name>IdentityCheck</filter-name> -->
<!--     <filter-
class>com.kodak.intersystem.appspot.server.IdentityFilterImpl</filter-
class> -->
<!--     <init-param> -->
<!--            <param-name>logType</param-name> -->
<!--            <param-value>special</param-value> -->
<!--    </init-param> -->
<!--   </filter> -->

  <filter-mapping>
    <filter-name>IdentityCheck</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <!-- Servlets -->

  <servlet>
    <servlet-name>greetServlet</servlet-name>
    <servlet-
class>com.kodak.intersystem.appspot.server.GreetingServiceImpl</
servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>greetServlet</servlet-name>
    <url-pattern>/intersystem_webapp/greet</url-pattern>
  </servlet-mapping>

  <!-- Default page to serve -->
  <welcome-file-list>
    <welcome-file>Intersystem_webapp.html</welcome-file>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>

  <security-constraint>
    <web-resource-collection>
      <web-resource-name>Protected Site</web-resource-name>
      <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
      <role-name>*</role-name>
    </auth-constraint>
    <user-data-constraint>
        <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
  </security-constraint>

</web-app>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to