Sorry, I was using the wrong pom.xml file.  I get the Jasig CAS login page now 
after successful deployment, however I receive "The credentials you provided 
are not supported by CAS." when I try to login.  Here is my pom.xml (does it 
look correct for AD LDAP authentication):

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0";
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
        <modelVersion>4.0.0</modelVersion>
        <groupId>edu.longwood.cas</groupId>
        <artifactId>local-cas</artifactId>
        <packaging>war</packaging>
        <version>1.0-SNAPSHOT</version>

        <build>
                <plugins>
                        <plugin>
                             <artifactId>maven-war-plugin</artifactId>
                             <configuration>
                                 <warName>cas</warName>
                             </configuration>
                        </plugin>
                </plugins>
        </build>

        <dependencies>
                <dependency>
                        <groupId>org.jasig.cas</groupId>
                        <artifactId>cas-server-webapp</artifactId>
                        <version>${cas.version}</version>
                        <type>war</type>
                        <scope>runtime</scope>
                </dependency>
                <dependency>
                        <groupId>org.jasig.cas</groupId>
                        <artifactId>cas-server-support-generic</artifactId>
                        <version>${cas.version}</version>
                        <type>jar</type>
                        <scope>runtime</scope>
                </dependency>
                <dependency>
                        <groupId>org.jasig.cas</groupId>
                        <artifactId>cas-server-support-ldap</artifactId>
                        <version>${cas.version}</version>
                </dependency>
        </dependencies>

        <properties>
                <cas.version>3.4.2</cas.version>
        </properties>

        <repositories>
             <repository>
                  <id>ja-sig</id>
                  
<url>http://oss.sonatype.org/content/repositories/releases/</url>
             </repository>
        </repositories>
</project>

Also, how do I setup logging because catalina.out still complains about not 
being able to log (I guess create a cas.log file)?
-- 
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