> From: reynir [mailto:[EMAIL PROTECTED]
> Subject: Re: HTTPconnector problem
> 
> As I understand the documentation (and my past experience 
> shows) you are not correct. :)

But we don't actually run the documentation.  Here's the code of interest (from 
5.0.25, the last one I downloaded the source for):

        if (! req.scheme().isNull()) {
            // use processor specified scheme to determine secure state
            request.setSecure(req.scheme().equals("https"));
        } else {
            // use connector scheme and secure configuration, (defaults to
            // "http" and false respectively)
            req.scheme().setString(connector.getScheme());
            request.setSecure(connector.getSecure());
        }

If I'm reading this correctly, the connector's secure attribute will only be 
used if the scheme for the request has not been set.  I suspect that, in your 
case, the scheme is "http", forcing the secure attribute for the request to 
false.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.

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

Reply via email to