I recently enabled HTTPs in my projects by adding following lines in web.xml

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


As the result all the http request will be redirected to same URL using 
https (LINK 
<https://cloud.google.com/appengine/docs/java/config/webxml#Secure_URLs>)

And this is working fine in expected manner.

I have modified code of mobile apps to send https requests.

But I dont need http request to be redirected using https.
(In order to support apps which are still sending http request.
i.e. http request from devices on which the users are still running old 
version of app)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/307b5df4-ce63-4904-8689-558c5128e9fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to