>   +
>   +        remoteAddrMB = coyoteRequest.remoteAddr();
>   + remoteHostMB = coyoteRequest.remoteHost();
>   + serverNameMB = coyoteRequest.serverName();
>   +
>   +

This forces the lookup to always be per-request, when it would be much nicer
to do it per-connection.

>   +
>   +    public void setAttribute(String name, Object value) {
>   + coyoteRequest.setAttribute( name, value );
>   +    }
>   +
>   +    public Object getAttribute(String name) {
>   +        if (name == null) {
>   +            return null;
>   +        }
>   +        return coyoteRequest.getAttribute( name );
>   +    }
>   +

Unless I'm missing something, this competely breaks SSL support, since
CoyoteInterceptor2.getInfo is never called.

>
>    }
>
>
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to