general  

[issues] Created: (PAXWEB-192) Enable HTTPS support

Ciprian Popa (JIRA)
Mon, 01 Feb 2010 22:56:23 -0800

Enable HTTPS support
--------------------

                 Key: PAXWEB-192
                 URL: http://issues.ops4j.org/browse/PAXWEB-192
             Project: Pax Web
          Issue Type: Improvement
          Components: Web Container
    Affects Versions: 0.8.0
            Reporter: Ciprian Popa
            Assignee: Alin Dreghiciu


Currently, in the org.ops4j.pax.web.service.internal.Activator (line: 243) 
there are the following lines of code that practically disable the HTTPS 
functionality

--------------------------------------------------------------------------------------------------------------------------------------------------------------------
//store( toPropagate, PROPERTY_SSL_PASSWORD, config.getSslPassword());
setProperty( toPropagate, PROPERTY_SSL_PASSWORD, null );
//store( toPropagate, PROPERTY_SSL_KEYPASSWORD, config.getSslKeyPassword());
setProperty( toPropagate, PROPERTY_SSL_KEYPASSWORD, null );
--------------------------------------------------------------------------------------------------------------------------------------------------------------------

Any reasons for this ?

I fixed (on my side) this issue by having the following code, and everything is 
working smoothly over HTTPS now also: 

--------------------------------------------------------------------------------------------------------------------------------------------------------------------
setProperty(toPropagate, PROPERTY_SSL_PASSWORD, config.getSslPassword());
setProperty(toPropagate, PROPERTY_SSL_KEYPASSWORD, config.getSslKeyPassword());
--------------------------------------------------------------------------------------------------------------------------------------------------------------------

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.ops4j.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

_______________________________________________
general mailing list
general@lists.ops4j.org
http://lists.ops4j.org/mailman/listinfo/general
  • [issues] Created: (PAXWEB-192) Enable HTTPS support Ciprian Popa (JIRA)