I working with CAS 3.4.6 and it extracts all attributes perfectly, but
some attributes that are generated through an overlay in LDAP can not be
recovered in CAS.

The ldap search is correct, where the attributes in ldap overlay are not
shown.

If i try the search with ldapsearch i can see all attributes, included
the overlayed ones.

i attach the file deployerconfigcontext.xml

Any ideas.

Regards.

-- 
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
	| deployerConfigContext.xml centralizes into one file some of the declarative configuration that
	| all CAS deployers will need to modify.
	|
	| This file declares some of the Spring-managed JavaBeans that make up a CAS deployment.  
	| The beans declared in this file are instantiated at context initialization time by the Spring 
	| ContextLoaderListener declared in web.xml.  It finds this file because this
	| file is among those declared in the context parameter "contextConfigLocation".
	|
	| By far the most common change you will need to make in this file is to change the last bean
	| declaration to replace the default SimpleTestUsernamePasswordAuthenticationHandler with
	| one implementing your approach for authenticating usernames and passwords.
	+-->
<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:p="http://www.springframework.org/schema/p";
       xmlns:sec="http://www.springframework.org/schema/security";
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd";>
	<!--
		| This bean declares our AuthenticationManager.  The CentralAuthenticationService service bean
		| declared in applicationContext.xml picks up this AuthenticationManager by reference to its id, 
		| "authenticationManager".  Most deployers will be able to use the default AuthenticationManager
		| implementation and so do not need to change the class of this bean.  We include the whole
		| AuthenticationManager here in the userConfigContext.xml so that you can see the things you will
		| need to change in context.
		+-->
	<bean id="authenticationManager" class="org.jasig.cas.authentication.AuthenticationManagerImpl">
		<!--
			| This is the List of CredentialToPrincipalResolvers that identify what Principal is trying to authenticate.
			| The AuthenticationManagerImpl considers them in order, finding a CredentialToPrincipalResolver which 
			| supports the presented credentials.
			|
			| AuthenticationManagerImpl uses these resolvers for two purposes.  First, it uses them to identify the Principal
			| attempting to authenticate to CAS /login .  In the default configuration, it is the DefaultCredentialsToPrincipalResolver
			| that fills this role.  If you are using some other kind of credentials than UsernamePasswordCredentials, you will need to replace
			| DefaultCredentialsToPrincipalResolver with a CredentialsToPrincipalResolver that supports the credentials you are
			| using.
			|
			| Second, AuthenticationManagerImpl uses these resolvers to identify a service requesting a proxy granting ticket. 
			| In the default configuration, it is the HttpBasedServiceCredentialsToPrincipalResolver that serves this purpose. 
			| You will need to change this list if you are identifying services by something more or other than their callback URL.
			+-->
		<property name="credentialsToPrincipalResolvers">
			<list>
				<!--
					| UsernamePasswordCredentialsToPrincipalResolver supports the UsernamePasswordCredentials that we use for /login 
					| by default and produces SimplePrincipal instances conveying the username from the credentials.
					| 
					| If you've changed your LoginFormAction to use credentials other than UsernamePasswordCredentials then you will also
					| need to change this bean declaration (or add additional declarations) to declare a CredentialsToPrincipalResolver that supports the
					| Credentials you are using.
				<bean class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver" />
					+-->
				<!--
					| HttpBasedServiceCredentialsToPrincipalResolver supports HttpBasedCredentials.  It supports the CAS 2.0 approach of
					| authenticating services by SSL callback, extracting the callback URL from the Credentials and representing it as a
					| SimpleService identified by that callback URL.
					|
					| If you are representing services by something more or other than an HTTPS URL whereat they are able to
					| receive a proxy callback, you will need to change this bean declaration (or add additional declarations).
					+-->
				<bean class="org.jasig.cas.authentication.principal.HttpBasedServiceCredentialsToPrincipalResolver" />
				<bean class="org.jasig.cas.authentication.principal.CredentialsToLDAPAttributePrincipalResolver">
				<!-- The Principal resolver form the credentials -->
					<property name="credentialsToPrincipalResolver">
						<bean class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver"/>
					</property>
				
					<!-- The query made to find the Principal ID. "%u" will be replaced by the resolved Principal -->
					<property name="filter" value="(mail=%u)"/>
					<!-- The attribute used to define the new Principal ID -->
					<property name="principalAttributeName" value="uid"/>
					<property name="searchBase" value="ou=Users,dc=Group"/>
					<property name="contextSource" ref="contextSource"/>
					<property name="attributeRepository">
						<ref bean="attributeRepository"/>
					</property>
				</bean>
			</list>
		</property>

		<!--
			| Whereas CredentialsToPrincipalResolvers identify who it is some Credentials might authenticate, 
			| AuthenticationHandlers actually authenticate credentials.  Here we declare the AuthenticationHandlers that
			| authenticate the Principals that the CredentialsToPrincipalResolvers identified.  CAS will try these handlers in turn
			| until it finds one that both supports the Credentials presented and succeeds in authenticating.
			+-->
		<property name="authenticationHandlers">
			<list>
				<!--
					| This is the authentication handler that authenticates services by means of callback via SSL, thereby validating
					| a server side SSL certificate.
					+-->
				<bean class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler" p:httpClient-ref="httpClient" />
				<!-- UM LDAP -->
				<!-- ========================================================================================== -->
				<bean class="org.jasig.cas.adaptors.ldap.BindLdapAuthenticationHandler">
					<property name="filter" value="mail=%u" />  <!-- Utilizamos email como nombre de usuario -->
					<property name="searchBase" value="ou=Users,dc=Group" />
					<property name="timeout" value="60000" />
					<property name="contextSource" ref="contextSource" />
				</bean>
			</list>
		</property>
	</bean>

	<bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource">
		<property name="pooled" value="false"/> <!-- Si lo ponemos a true, nos cachea la clave al cambiarla -->
		<property name="urls"> <list> <value>ldap://ldap.sistem.es:389/</value> </list> </property>
		<property name="userDn" value="cn=cas,ou=UsersSistem,dc=Group" />
		<property name="password" value="xxxxxxxx"/>
		<property name="baseEnvironmentProperties">
			<map>
				<entry><key><value>com.sun.jndi.ldap.connect.timeout</value></key><value>60000</value></entry>
				<entry><key><value>com.sun.jndi.ldap.read.timeout</value></key><value>300000</value></entry>
				<entry><key><value>java.naming.security.authentication</value></key><value>simple</value></entry>
			</map>
		</property>
	</bean>

	<!--
	This bean defines the security roles for the Services Management application.  Simple deployments can use the in-memory version.
	More robust deployments will want to use another option, such as the Jdbc version.
	
	The name of this should remain "userDetailsService" in order for Spring Security to find it.
	 -->
    <!-- <sec:user name="@@THIS SHOULD BE REPLACED@@" password="notused" authorities="ROLE_ADMIN" />-->
    <sec:user-service id="userDetailsService">
            <sec:user name="[email protected]" password="notused" authorities="ROLE_ADMIN" />
    </sec:user-service>
	
	<!-- 
	Bean that defines the attributes that a service may return.  This example uses the Stub/Mock version.  A real implementation
	may go against a database or LDAP server.  The id should remain "attributeRepository" though.
	 -->
	<bean id="attributeRepository" class="org.jasig.services.persondir.support.ldap.LdapPersonAttributeDao">
		<property name="contextSource" ref="contextSource" />
		<property name="baseDN" value="ou=Users,dc=Group" />
		<property name="requireAllQueryAttributes" value="true" />

		<property name="queryAttributeMapping">
			<map>
				<entry key="username" value="uid" />
			</map>
		</property>

		<property name="resultAttributeMapping">
			<map>
				<entry key="cn" value="cn" />
				<entry key="irisClassifCode" value="irisClassifCode" />
				<entry key="irisUserStatus" value="irisUserStatus" />
				<entry key="postalAddress" value="postalAddress" />
				<entry key="loginshell" value="loginshell" />
			</map>
		</property>
	</bean>
	
	<!-- 
	Sample, in-memory data store for the ServiceRegistry. A real implementation
	would probably want to replace this with the JPA-backed ServiceRegistry DAO
	The name of this bean should remain "serviceRegistryDao".
	 -->
        <bean id="serviceRegistryDao" class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl">
		<property name="registeredServices">
			<list>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="0" />
					<property name="name" value="CAS ACEGI" />
					<property name="description" value="CAS Service Manager" />
					<property name="serviceId" value="https://cas.um.es/cas/services/j_acegi_cas_security_check"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="1" />
					<property name="name" value="CII Listas" />
					<property name="description" value="Listas del Colegio de Ingenieros Informáticos" />
					<property name="serviceId" value="http://listas.cii-murcia.es/**"; />
					<property name="theme" value="cii" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="2" />
					<property name="name" value="DALI" />
					<property name="description" value="Informes de Impresión" />
					<property name="serviceId" value="http://dali.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="3" />
					<property name="name" value="Dumbo" />
					<property name="description" value="Dumbo" />
					<property name="serviceId" value="https://dumbo.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="4" />
					<property name="name" value="FUNDEWEB" />
					<property name="description" value="FUNDEWEB" />
					<property name="serviceId" value="https://fundeweb.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="5" />
					<property name="name" value="IMAP Webmail" />
					<property name="description" value="IMAP Webmail" />
					<property name="serviceId" value="imap://localhost**" />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="6" />
					<property name="name" value="Inventarium" />
					<property name="description" value="Inventarium" />
					<property name="serviceId" value="http://inventarium.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="7" />
					<property name="name" value="Monitor" />
					<property name="description" value="monitor.um.es" />
					<property name="serviceId" value="https://monitor.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="8" />
					<property name="name" value="PRUEBAS - SIU" />
					<property name="description" value="PRUEBAS - SIU" />
					<property name="serviceId" value="https://www.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="9" />
					<property name="name" value="SIR" />
					<property name="description" value="SIR" />
					<property name="serviceId" value="http://webmail.atica.um.es/sir/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="10" />
					<property name="name" value="Sakai" />
					<property name="description" value="Sakai" />
					<property name="serviceId" value="https://aulavirtual.um.es/**"; />
					<property name="theme" value="aulavirtual" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="11" />
					<property name="name" value="Sip DEV" />
					<property name="description" value="Sip DEV Borrame" />
					<property name="serviceId" value="http://sip.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="12" />
					<property name="name" value="Sympa HTTP" />
					<property name="description" value="Sympa HTTP" />
					<property name="serviceId" value="http://listas.um.es/**"; />
					<property name="theme" value="sympa" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="13" />
					<property name="name" value="Telefonía" />
					<property name="description" value="Telefonía" />
					<property name="serviceId" value="https://telefonia.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="14" />
					<property name="name" value="Webmail" />
					<property name="description" value="Horde Webmail" />
					<property name="serviceId" value="https://webmail.atica.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="15" />
					<property name="name" value="EVA" />
					<property name="description" value="Proyecto EVA" />
					<property name="serviceId" value="https://eva.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="allowedAttributes">
						<list>
					          	<value>cn</value>
					          	<value>irisClassifCode</value>
					          	<value>irisUserStatus</value>
						</list>
					</property>
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="16" />
					<property name="name" value="EVA II" />
					<property name="description" value="Proyecto EVA" />
					<property name="serviceId" value="https://155.54.91.7/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="allowedAttributes">
						<list>
					          	<value>cn</value>
					          	<value>irisClassifCode</value>
					          	<value>irisUserStatus</value>
						</list>
					</property>
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="17" />
					<property name="name" value="TEST" />
					<property name="description" value="PHP de test" />
					<property name="serviceId" value="http://moncada.atica.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="allowedAttributes">
						<list>
					          	<value>cn</value>
					          	<value>irisClassifCode</value>
					          	<value>irisUserStatus</value>
					          	<value>postalAddress</value>
					          	<value>loginshell</value>
						</list>
					</property>
					<property name="ignoreAttributes" value="false" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="18" />
					<property name="name" value="Araneo Test" />
					<property name="description" value="Araneo Test" />
					<property name="serviceId" value="http://araneotest.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="19" />
					<property name="name" value="TelefoniaDesa" />
					<property name="description" value="Telefonía Desarrollo" />
					<property name="serviceId" value="http://telefoniadesa.um.es:8080/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="true" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="20" />
					<property name="name" value="Wikis" />
					<property name="description" value="Wikis de trabajo ATICA" />
					<property name="serviceId" value="https://wiki.atica.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="21" />
					<property name="name" value="Digital SlideBox" />
					<property name="description" value="Digital SlideBox" />
					<property name="serviceId" value="http://sai-dsb.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="22" />
					<property name="name" value="Digital SlideBox Desa" />
					<property name="description" value="Digital SlideBox Desa" />
					<property name="serviceId" value="http://dev02-ovh.slidepath.com/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="23" />
					<property name="name" value="EUNIS Pruebas local" />
					<property name="description" value="Monedero Virtual" />
					<property name="serviceId" value="http://155.54.66.23:8888/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="24" />
					<property name="name" value="EUNIS Pruebas" />
					<property name="description" value="Monedero Virtual" />
					<property name="serviceId" value="http://eunispruebas.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="25" />
					<property name="name" value="EUNIS" />
					<property name="description" value="Monedero Virtual" />
					<property name="serviceId" value="https://eunis.um.es/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="26" />
					<property name="name" value="Suma Pruebas" />
					<property name="description" value="Campus Virtual Suma Pruebas" />
					<property name="serviceId" value="http://sumapruebas.um.es/**"; />
					<property name="theme" value="suma" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
				<bean class="org.jasig.cas.services.RegisteredServiceImpl">
					<property name="id" value="27" />
					<property name="name" value="Jose Rabal SUMA" />
					<property name="description" value="Jose Rabal SUMA" />
					<property name="serviceId" value="http://155.54.67.155:8080/**"; />
					<property name="theme" value="default" />
					<property name="enabled" value="true" />
					<property name="allowedToProxy" value="false" />
					<property name="ssoEnabled" value="true" />
					<property name="anonymousAccess" value="false" />
					<property name="ignoreAttributes" value="true" />
					<property name="evaluationOrder" value="2" />
				</bean>
			</list>
		</property>
	</bean>
	<bean id="auditTrailManager" class="com.github.inspektr.audit.support.Slf4jLoggingAuditTrailManager" />
</beans>

Reply via email to