On 20/09/10 15:58, Marvin Addison wrote:
> Attribute release is supported out of the box using the SAML 1.1
> protocol. I encourage you to avoid customizing
> casServiceValidationSuccess.jsp as you have, which amounts to an
> undocumented extension to the CAS 2.0 protocol. You should only do
> this if you MUST support both CAS proxying and attribute release.
> I reviewed your deployerconfigContext.xml and it looks good. Can you
> turn up the server-side logging and post the relevant excerpts?
>
> M
>
Is there a chance that my pom.xml is causing all this trouble
(maybe something that is needed is not enabled.
I have modified the original pom.xml from cas-server-webapp.
I've attaching my pom.xml
--
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
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server</artifactId>
<version>3.4.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jasig.cas</groupId>
<artifactId>example-cas</artifactId>
<version>3.4.2.1</version>
<packaging>war</packaging>
<name>EXAMPLE CAS webapp</name>
<organization>
<name>EXAMPLE</name>
<url>http://www.example.com</url>
</organization>
<description>The Example's customizations to the JA-SIG CAS server.</description>
<dependencies>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-webapp</artifactId>
<version>${project.version}</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<!-- if you need LDAP handler -->
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-support-ldap</artifactId>
<version>3.4.2</version>
</dependency>
<!-- if you need X509 handler -->
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-support-x509</artifactId>
<version>3.4.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<warName>cas</warName>
</configuration>
</plugin>
</plugins>
</build>
</project>