I just hosted an Asp.Mvc app in AppEngine (flex environment), and everything is going ok.
Now, I want my app to be served only over https. Right now, I can access it both from http and https.
The problem is that if I check the incoming request, it always shows as HTTP (even if the request comes from https). So, there is no way for me to detect and try to redirect (since a redirect will always produce an infinite redirection loop).
Is there any way I can set this outside my app? The documentation doesn't has any information on this.
Regards,