Hi guys,
I have followed the instructions at
http://www.ja-sig.org/wiki/display/CASUM/Using+JDBC+for+Authentication
successfully. I even used my own custom password encoder. CAS works great
for me. :) Though I was intimidated at the start, installing and configuring
CAS has been smooth so far. Thanks to the initial help offered by Scott and
Harry.
Now, I need some help/pointers for configuring my existing Java web
application to use CAS. My java application is built mainly using
Beans(Model) / JSPs(View) / Servlets (Controller) architecture.
The pages on my website can be broken down into 2 categories
1. Pages which are only available for users who are logged in.
2. Pages which are available to all users (whether they are logged in or
not) but the information displayed is based on
a) Is the user logged in?
b) The rank of the logged in user? (i.e. Customer, Sales Person, Manager,
Admin, etc)
Keeping this in mind, what would be the best way to change my web
application to use CAS for Single Sign On. Can you guys please send me links
to appropriate documentation to read?
Thanks,
Kristin.
PS: I was successfull in testing my CAS implementation using the following
CAS Filter in the jsp-examples directory
<description>JSP 2.0 Examples.</description>
<display-name>JSP 2.0 Examples</display-name>
<filter>
<filter-name>CAS Filter</filter-name>
<filter-class>edu.yale.its.tp.cas.client.filter.CASFilter</filter-class>
<init-param>
<param-name>edu.yale.its.tp.cas.client.filter.loginUrl</param-name>
<param-value>https://kristin/cas/login</param-value>
</init-param>
<init-param>
<param-name>edu.yale.its.tp.cas.client.filter.validateUrl</param-name>
<param-value>https://kristin/cas/proxyValidate</param-value>
</init-param>
<init-param>
<param-name>edu.yale.its.tp.cas.client.filter.serverName</param-name>
<param-value>kristin</param-value>
</init-param>
</filter>
_______________________________________________
Yale CAS mailing list
[email protected]
http://tp.its.yale.edu/mailman/listinfo/cas