when i try to access a url from my application
http://myapp.com/public/OrderConfirm from browser app engine KEEPS asking me
to log in.
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
Can anyone one help?
<servlet>
<servlet-name>OrderConfirm</servlet-name>
<servlet-class>com.taxi.server.task.ProcessOrderConfirm</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>OrderConfirm</servlet-name>
<url-pattern>/public/OrderConfirm</url-pattern>
</servlet-mapping>
<security-constraint>
<web-resource-collection>
<web-resource-name>public urls</web-resource-name>
<url-pattern>/public/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
</security-constraint>
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" 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?hl=en.