> We have not been using the services manager console but we have allowed for 
> test purposes all services (*) to retrieve the attributes in our config file :

That's not strictly true.  Your serviceID is *://**, which is not the
same as the regular expression ".*" since these are Ant pattern
expressions.  To accommodate "all http+https services," you should
have two service entries like the following:

                    <bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="0" />
                        <property name="name" value="HTTP" />
                        <property name="description" value="Only
Allows HTTP Urls" />
                        <property name="serviceId" value="http://**"; />
                    </bean>

                    <bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="1" />
                        <property name="name" value="HTTPS" />
                        <property name="description" value="Only
Allows HTTPS Urls" />
                        <property name="serviceId" value="https://**"; />
                    </bean>

M

-- 
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