I want to add a new page, /logoutWarn, to my CAS installation. I have written 
my new controller and JSP and added the following to the servlet configuration:

==========
  <bean
      id="handlerMappingC"
      class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
      <props>
        <!-- cut out the default mappings for clarity -->
        <prop key="/logoutWarn">logoutWarnController</prop>
      </props>
    </property>
    <property name="alwaysUseFullPath" value="true"/>
  </bean>

  <bean id="logoutWarnController" 
class="edu.clayton.cas.controllers.LogoutWarnController" />
==========

Whenever I try to view the /logoutWarn page I get redirected to the /login 
page. It doesn't matter if I'm logged in or not (and for testing, I don't 
really care about having to be logged in). What do I need to do to get this 
working?

~ James
-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to