Essentially, I was trying to access my application's login.jsp. That would take me to the CAS login page where I would login and then I would be redirected back to my Application's login.jsp. In my web.xml, I used ServiceUrl and set it also to login.jsp, in effect, forcing...
</servlet-class> <init-param> config /WEB-INF/struts-config.xml </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> </web-app> 2) struts-config.xml file ? 1 ...