Hello ,
Actually, I’m trying to upgrade my Cas from 3.5.2 to 4.2.3 . It my first time to use jasig cas .
I’m using there dependency in the maven of my project:
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-webapp</artifactId>
<version>${org.jasig.cas.version}</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-core</artifactId>
<version>${org.jasig.cas.version}</version>
</dependency>
<dependency>
<groupId>org.jasig.cas.client</groupId>
<artifactId>cas-client-core</artifactId>
<version>${org.jasig.cas.client.version}</version>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-integration-ehcache</artifactId>
<version>${org.jasig.cas.version}</version>
<scope>runtime</scope>
</dependency>
I’m adapted my project to all change do it in the new version(4.2.3). Now I can build my project (I correct all the modification of package and all new signature of methods in class).
But if I want deploy my project I have issue with the web.xml of my project (I attached my web.xml to the email):
NoSuchFileException : SafeContextLoaderListener.java
<listener>
<listener-class>
org.jasig.cas.web.init.SafeContextLoaderListener
</listener-class>
</listener>
And
NoSuchFileException : ClientInfoThreadLocalFilter
< filter>
<filter-name>CAS Client Info Logging Filter</filter-name>
<filter-class>com.github.inspektr.common.web.ClientInfoThreadLocalFilter</filter-class>
</filter>
thank you for your help.
Best Regards.