Turbine knows nothing about SSL other than DynamicURI might add https as
the scheme.  This property can allow you to write an application that
uses ssl for sensitive data.  But if the property is set to false the
application ignore the call to switch to secure mode.  For example when
developing on a system which does not have ssl installed.

A badly written example:

class SecureURI extends DynamicURI
{
    public SecureURI(RunData data)
    {
        super(data);
        if (TurbineResources.getBoolean(use.ssl))
        {
             setServerScheme("https");
        }
    }
}

John McNally



Colin Chalmers wrote:
> 
> Hi,
> 
> I have a question regarding ssl and retrieving client certificates.
> 
> 1. I see in the TurbineResources a parameter for setting SSL, when should I use this 
>and what significance does it have?
> 
> 2. How do I retrieve the client certificate from a session in Turbine? I remember 
>that I had trouble with this with Netscape server.
> Is there a standard command?
> 
> Any help very much appreciated.
> 
> Thanx
> 
> Colin
> 
> ------------------------------------------------------------
> To subscribe:        [EMAIL PROTECTED]
> To unsubscribe:      [EMAIL PROTECTED]
> Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
> Problems?:           [EMAIL PROTECTED]


------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to