Edward,

In my original post I have my filter declarations.   What I did not include
were the broken filter mappings:

    <filter-mapping>
        <filter-name>CAS Authentication Filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <filter-mapping>
        <filter-name>CAS Validation Filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

Once I reversed the order of these (as follows) all was fine.

    <filter-mapping>
        <filter-name>CAS Validation Filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <filter-mapping>
        <filter-name>CAS Authentication Filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

NOTE: This assumes that you have already corrected all other problems (e.g.
SSL handshake is happening correctly, etc.).



On Mon, Jul 21, 2008 at 1:03 PM, Edward Chen <[EMAIL PROTECTED]> wrote:

> I am also interested in this problem solution. Is it possible that you
> can post your code again for how you fix ?
>
> Edward
>
> Robert R wrote:
> > I added a one-liner to the Wiki about switching the order of the
> > filters for proxy validation.  Thanks again.
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > Yale CAS mailing list
> > [email protected]
> > http://tp.its.yale.edu/mailman/listinfo/cas
> >
>
> _______________________________________________
> Yale CAS mailing list
> [email protected]
> http://tp.its.yale.edu/mailman/listinfo/cas
>
_______________________________________________
Yale CAS mailing list
[email protected]
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to