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:[EMAIL PROTECTED] Sent: Friday, September 29, 2006 2:27 PM To: [email protected] 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ------------------------------------------------------------------------------ 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
