Re: [cas-user] CAS Attributes

2009-08-25 Thread HansDB
I'm still having problems with this. Does anyone have any suggestions as to how I could add a few static attributes to a list of attributes retrieved from e.g. a JDBC connection or an LDAP connection ? (the merging itself is obviously done with the MergingPersonAttributeDaoImpl, but I just can't s

Re: [cas-user] CAS Attributes

2009-08-25 Thread scott . battaglia
If PersonDirectory does have an impl that does it you might need to just write one yourself that implements the right interfaces. --Original Message-- From: HansDB To: CAS User List ReplyTo: CAS User List Subject: Re: [cas-user] CAS Attributes Sent: Aug 25, 2009 9:38 AM I'm still havi

[cas-user] unsubscribe

2009-08-25 Thread hua lu
unsubscribe -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re: [cas-user] Sign-on with alias

2009-08-25 Thread Johan Reinalda
Marvin, we are currently using the 'slow bind' method, see below. I think I understand how to search for the 'mail' attribute, if the username search fails (another principal resolver bean added on below), but am unsure how to then use this to check the password, and give the AD object name (

Re: [cas-user] Sign-on with alias

2009-08-25 Thread Marvin Addison
You don't need another credentials-to-principal resolver; you can simply use a more complex LDAP search filter: (|(sAMAccountName=%u)(mail=%u)) That would produce the bind DN for a search on either of sAMAccountName or mail attributes, so the user could effectively authenticate as either username

Re: [cas-user] Sign-on with alias

2009-08-25 Thread Johan Reinalda
Marvin, Yes, that is exactly what we need! We do indeed need the sAMaccount (in our case the numeric id) back to all applications, instead of the email address if that was used to login. If you can get me going in that direction, that would be fantastic! Thanks, Johan - Original Messa

[cas-user] Reminder: Hotel Deadline for Jasig Unconference!

2009-08-25 Thread Jonathan Markow
Register now for the 2009 Jasig Unconference at the University of Illinois - Urbana-Champaign. "A Champaign Conference at Ginger Ale Prices!" Discounted rates at the Conference Center iHotel expire on Thursday, August 27th. Take this opportunity to meet up with the experts in a variety of open so

[cas-user] CAS PL/SQL client and SSL certificate validation errors

2009-08-25 Thread Parker Grimes
Hi all, This question isn't really an issue with CAS, but I am hoping someone out there has used the PL/SQL CAS client and can offer a suggestion to a problem we are having. We have been using the PL/SQL CAS client for two years now successfully. Our SSL certificate expires soon on our CAS server

Re: [cas-user] CAS Attributes

2009-08-25 Thread HansDB
Did some more checking and I don't think there is any kind of implementation available in person directoy that does what I need it to do (the StubPersonAttributeDao comes close, but close isn't good enough :p). So I did write a little something extra myself ... which does seem to work. But since