This is a great pointer! However, I'm having a little trouble getting
this to actually work and I'm confused as to why nothing seems to
redirect. I would think the following would just redirect everything
on my site through https. Any idea why that doesn't work or a way to
instrument what is going on? I'm on the latest appengine & gwt
versions.
Section I added to web.xml:
<!-- Security constraints -->
<security-constraint>
<web-resource-collection>
<url-pattern>*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
>
http://code.google.com/appengine/docs/java/config/webxml.html#Secure_...
> > > Is there any way to redirect http traffic to https on app engine? For instance, I want users who type inhttp://x.appspot.comintothe browser to automatically get redirected tohttps://
x.appspot.com. Any idea if this is possible in GAE?