Mladen Turk wrote:
[EMAIL PROTECTED] wrote:
- ssl = endpoint.getSecure();
+        ssl = "on".equalsIgnoreCase(endpoint.getSSLEngine());


Like Remy said, anything except "Off" is acceptable.
It can be either "On" or "EngineName" (eg, SSLEngine="nuron")
that's for APR, because of
       if (!"off".equalsIgnoreCase(SSLEngine)) {
           // Initialize SSL
           // FIXME: one per VM call ?
           if ("on".equalsIgnoreCase(SSLEngine)) {
               SSL.initialize(null);
           } else {
               SSL.initialize(SSLEngine);
           }

In the HTTP connector, there is no other engine to initialize, hence the only values are on/off

Filip



Regards,
Mladen.

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




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

Reply via email to