Hello,
i've installed a CAS Server Version 5.0.1 and works.
Furthermore i have write a website with php and works, too.
But now i have written a simple java Program, but the Client doesn't work.
I have added the cas-client-core.jar to the Libaries and added this code the web.xml:
<filter>
<filter-name>CAS Authentication Filter</filter-name>
<filter-class>org.jasig.cas.client.authentication.AuthenticationFilter</filter-class>
<init-param>
<param-name>casServerLoginUrl</param-name>
<param-value>https://battags.ad.ess.rutgers.edu:8443/cas/login</param-value>
</init-param>
<init-param>
<param-name>serverName</param-name>
<param-value>http://www.acme-client.com</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CAS Authentication Filter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
The casServerLoginUrl and serverName are updated to our company.
But when i copy the war file to the tomcat webapp folder i get the following error:
java.lang.ClassNotFoundException: org.jasig.cas.client.authentication.AuthenticationFilter
Is there anyone, who can help me?
Thanks a lot.