[Mono-list] Request.IsSecureConnection & Request.Url.AbsoluteUri strange behavior

Gonzalo Paniagua Javier gonzalo.reply.to.the.list.iam.subscribed@ximian.com
Fri, 16 Jul 2004 03:31:44 +0200


El jue, 15-07-2004 a las 15:27, Igor Georgiev escribió:
> Request.IsSecureConnection always return FALSE !!!
> 
> public sealed class HttpRequest {
> .........
>     private HttpWorkerRequest _WorkerRequest;
> .........
>     public bool IsSecureConnection {
>             get {
>                 if (null != _WorkerRequest) {
>                 return _WorkerRequest.IsSecure();
>             }
>             return false;
>         }
>     }

No wonder. Our System.Web does not support anything related to SSL. You
can even use apache+mod_ssl + mod_mono and xsp will not know that the
connection is encrypted. I think there's already a bug for this, if not
feel free to use bugzilla.

-Gonzalo