I have a simple CASifyed application that fails when I submit valid user name / password. I get a 500 error:
Any ideas? I am using casclient-2.1.1.jar. Web.xml filter definition at bottom. Thanks, Bryan type Exception report message descriptionThe server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException: edu.yale.its.tp.cas.client.CASAuthenticationException: Unable to validate ProxyTicketValidator [[edu.yale.its.tp.cas.client.ProxyTicketValidator proxyList=[null] [edu.yale.its.tp.cas.client.ServiceTicketValidator casValidateUrl=[https://my.server.edu/serviceValidate] ticket=[ST-38661-ICAlx3aL3Yg1COiwHu7w-cas] service=[https%3A%2F%2Fguide%3A9932%2Fcasringtest] renew=false]]] root cause edu.yale.its.tp.cas.client.CASAuthenticationException: Unable to validate ProxyTicketValidator [[edu.yale.its.tp.cas.client.ProxyTicketValidator proxyList=[null] [edu.yale.its.tp.cas.client.ServiceTicketValidator casValidateUrl=[https://my.server.edu/serviceValidate] ticket=[ST-38661-ICAlx3aL3Yg1COiwHu7w-cas] service=[https%3A%2F%2Fguide%3A9932%2Fcasringtest] renew=false]]] root cause java.io.FileNotFoundException: https://my.server.edu.edu/serviceValidate?service=https%3A%2F%2Fguide%3A9932%2Fcasringtest&ticket=ST-38661-ICAlx3aL3Yg1COiwHu7w-cas note The full stack traces of the exception and its root causes are available in the Sun Java System Application Server 9.1_02 logs. Here is my filter definition: <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://my.server.edu/cas/login</param-value> </init-param> <init-param> <param-name>edu.yale.its.tp.cas.client.filter.validateUrl</param-name> <param-value>https://my.server.edu/serviceValidate</param-value> </init-param> <init-param> <param-name>edu.yale.its.tp.cas.client.filter.serviceUrl</param-name> <param-value>https://server:port/casringtest</param-value> </init-param> </filter> <filter-mapping> <filter-name>CAS Filter</filter-name> <url-pattern>/*</url-pattern> -- You are currently subscribed to cas-dev@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-dev