RE: [cas-user] Issues with deploying LDAP-based Service Registry (4.0.0)

2014-08-05 Thread Misagh Moayyed
Your ldap DAO is missing both the search filter and the load filter and they should be automatically set by the code. Try adding: context:component-scan base-package=org.jasig.cas / To your configuration. From: David A. Kovacic [mailto:d...@case.edu] Sent: Monday, August 4, 2014 10:32

[cas-user] CAS 4.1 - Any release date planned?

2014-08-05 Thread Jaroslav Kacer
Dear CAS users/developers, I'd like to ask whether there is any planned release date of CAS 4.1. We plan to upgrade our company CAS server and there are some new features in 4.1 we'd like to use, namely the integration with PAC4J. Unfortunately I was not able to find anything about 4.1 at the

[cas-user] Apereo Stack Exchange community

2014-08-05 Thread Misagh Moayyed
CAS Community, The Apereo foundation is discussing a better way of capturing technical documentation in QA form. We have a lot of technical information buried in the various mailing lists going back close to a decade. It was mentioned that this can be difficult to find amidst all of the other

Re: [cas-user] CAS 4.1 - Any release date planned?

2014-08-05 Thread Jérôme LELEU
Hi, I like people needing the new pac4j version ;-) So far, we haven't said anything about the release date. 4.0 was released in May so I personaly would not expect anything before the end of the year... Best regards, Jérôme LELEU Founder of CAS in the cloud: www.casinthecloud.com | Twitter:

Re: [cas-user] Issues with deploying LDAP-based Service Registry (4.0.0)

2014-08-05 Thread David A. Kovacic
That goes into the deployerConfigContext.xml file right after the beans element like so, correct: 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;

Re: [cas-user] Issues with deploying LDAP-based Service Registry (4.0.0)

2014-08-05 Thread David A. Kovacic
Here you go: # # Licensed to Jasig under one or more contributor license # agreements. See the NOTICE file distributed with this work # for additional information regarding copyright ownership. # Jasig licenses this file to you under the Apache License, # Version 2.0 (the License); you may not

Re: [cas-user] Issues with deploying LDAP-based Service Registry (4.0.0)

2014-08-05 Thread John Gasper
Hi David, You need to add the context namespace and schema to the beans definition: Before the schemaLocation add: xmlns:context=http://www.springframework.org/schema/context; in schemaLocation attribute add: http://www.springframework.org/schema/context

RE: [cas-user] Java-sourced custom attributes not being released

2014-08-05 Thread Misagh Moayyed
You'll need to configure what the allowed attributes are. By default nothing is released...and you likely don’t need the attributeFilter because that only operates on attributes values, and not the names itself. http://jasig.github.io/cas/4.0.0/integration/Attribute-Release.html 4.1 cleans up

Re: [cas-user] Issues with deploying LDAP-based Service Registry (4.0.0)

2014-08-05 Thread David A. Kovacic
Wow! That last looks to have done it. This time when Tomcat started up it started with the log entry loading 0 service and access to the pages was denied with service not registered errors (correct behavior). When I hand-entered the stub HTTP and IMAP service into the correct location in our

[cas-user] Manually writing CASTGC cookie CAS4

2014-08-05 Thread Puneet Goyal
Hi , I have a scenario where I am authenticating a user by using CAS's REST api and writing the returned cookie to response The thought was when a secured page is encountered and user goes to CAS's login page, he will get logged in using the CASTGC cookie. But this doesn't work correctly as

Re: [cas-user] Manually writing CASTGC cookie CAS4

2014-08-05 Thread Scott Battaglia
Only the CAS server can set the CASTGC cookie and it can only do that when being directly interacted with via the web browser. If you need the cookie set in the web browser, there must be some interaction with the CAS server. On Tue, Aug 5, 2014 at 9:23 PM, Puneet Goyal pgo...@qasource.com