You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-user@jakarta.apache.org by mishle1 <mi...@yahoo.com> on 2006/09/29 15:27:29 UTC

Does Jakarta Slide supports HTTPS?

Hallo People,

My question is supports Jakarta Slide https or only http?

Is there a version of Slide with https??

Thanks, Martina
-- 
View this message in context: http://www.nabble.com/Does-Jakarta-Slide-supports-HTTPS--tf2356884.html#a6564950
Sent from the Jakarta Slide - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: slide-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-user-help@jakarta.apache.org


RE: Does Jakarta Slide supports HTTPS?

Posted by "Boden, David" <da...@lehman.com>.
Hi Martina,

This shouldn't be a problem. Exposing via HTTPS is something that the
container (e.g. Tomcat) is responsible for. Please read the Tomcat
documentation on how to expose an HTTPS connector:

http://tomcat.apache.org/tomcat-5.0-doc/ssl-howto.html

Then, if you want to *ensure* that users can only access Slide over the
HTTPS link then you can add an additional security constraint to your
web.xml:

    <security-constraint>
        <web-resource-collection>
            <web-resource-name>DAV resource</web-resource-name>
            <url-pattern>/*</url-pattern>
            <http-method>COPY</http-method>
            <http-method>DELETE</http-method>
		etc. etc. etc.
        </web-resource-collection>
        <auth-constraint>
            <role-name>user</role-name>
        </auth-constraint>
        <!-- The important bit! -->
        <user-data-constraint>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>

Regards,
Dave 

-----Original Message-----
From: mishle1 [mailto:mishle1@yahoo.com] 
Sent: Friday, September 29, 2006 2:27 PM
To: slide-user@jakarta.apache.org
Subject: Does Jakarta Slide supports HTTPS?


Hallo People,

My question is supports Jakarta Slide https or only http?

Is there a version of Slide with https??

Thanks, Martina
--
View this message in context:
http://www.nabble.com/Does-Jakarta-Slide-supports-HTTPS--tf2356884.html#
a6564950
Sent from the Jakarta Slide - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: slide-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-user-help@jakarta.apache.org



------------------------------------------------------------------------------
This message is intended only for the personal and confidential use of the designated recipient(s) named above.  If you are not the intended recipient of this message you are hereby notified that any review, dissemination, distribution or copying of this message is strictly prohibited.  This communication is for information purposes only and should not be regarded as an offer to sell or as a solicitation of an offer to buy any financial product, an official confirmation of any transaction, or as an official statement of Lehman Brothers.  Email transmission cannot be guaranteed to be secure or error-free.  Therefore, we do not represent that this information is complete or accurate and it should not be relied upon as such.  All information is subject to change without notice.


---------------------------------------------------------------------
To unsubscribe, e-mail: slide-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-user-help@jakarta.apache.org