Hi,

Try this in your web.xml file.
<security-constraint>
        <web-resource-collection>
            <web-resource-name>Secure Area</web-resource-name>
            <url-pattern>/*</url-pattern>
            <http-method>GET</http-method>
            <http-method>POST</http-method>
        </web-resource-collection>
        <user-data-constraint>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>

url-pattern is the list of pages, folders or whole webapp (/*). 

Regards,
Dhaval
--- hung ngole <[EMAIL PROTECTED]> wrote:

> Hi,
>   I'm using Tomcat 5 & I have configured SSL successful. But now I want to 
> use SSL for a
> particular pages not for all pages ( or for whole application ).
>   How can I do this? 
>   Thanks much,
>   Hung.
> 
>                       
> ---------------------------------
> Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates.


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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

Reply via email to