分享

How to make web container automatically change to SSL channel? (transport-guarantee)

 digitaldreamer 2007-01-14

Once I observed that the web server brought me into an SSL channel after my clicking a link on a page which is accessed via a Non-SSL channel.

 

I wondered how it did this at that time.

 

In fact it is so easy to implement this using Java. The only thing you need to set is the transport-guarantee in web.xml.

 

Below is a sample web.xml.

<!-- This resource can only be accessed by those client who can present an trusted client certificate -->

<security-constraint>

<web-resource-collection>

<web-resource-name>Resource protected by client cert</web-resource-name>

<url-pattern>/ProtectedByClientCert</url-pattern>

</web-resource-collection>

<auth-constraint>

<role-name>members</role-name>

</auth-constraint>

<!-- Here We specify accesses to this resource must be over an SSL channel

The container will automatically use https to access this resource.

-->

<user-data-constraint>

<transport-guarantee>CONFIDENTIAL</transport-guarantee>

</user-data-constraint>

</security-constraint>

 

<login-config>

<auth-method>CLIENT-CERT</auth-method>

<realm-name>Client Cert Users-only Area</realm-name>

</login-config>

 

 

However, you must first enable the secure port of the web container.

In above example you also need to make CLIENT-CERT work first.


    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多