You dont need to configure anything for HTTPS to just be 'available'. At
least for appspot.com urls.

They just work.


That code, is *for* configuring the automatic redirect, ie saying you do
want the to *only* use https.


So just remove that code to remove the redirect!


(or just change <url-pattern>, so that it never matches any real URL! As it
defines the list of URLs that redirect.



On 24 May 2016 at 20:57, Vivek Singh <[email protected]> wrote:

> 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
> <https://groups.google.com/d/msgid/google-appengine/307b5df4-ce63-4904-8689-558c5128e9fa%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAJCAUuJ4c0XjADRRn905n5CtaEhPGm0dSvVTW0wd09u-DREkEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to