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

2014-09-01 Thread Daniel . CHARLOT
...@bt.com] Sent: Wednesday, August 6, 2014 3:30 AM To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released I can indeed – and it works! :-D Is /p3/serviceValidate the recommended approach when you want to use v3.0 of the protocol

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

2014-09-01 Thread Daniel . CHARLOT
that either in the protocol or somewhere on the docs page. From: richard.wise...@bt.com [mailto:richard.wise...@bt.com] Sent: Wednesday, August 6, 2014 3:30 AM To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released I can indeed – and it works

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

2014-08-06 Thread Richard Wiseman
Thanks Misagh. I've made some changes and now, just to be explicit, my authenticateUsernamePasswordInternal method ends: MapString, Object attributes = new HashMapString, Object(); if (billingAccountID != null) attributes.put(billingAccountId, billingAccountID); attributes.put(groupMembership,

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

2014-08-06 Thread Misagh Moayyed
How is your authn handler wired into the CAS config? Can you post your configuration? -Original Message- From: Richard Wiseman [mailto:richard.wise...@bt.com] Sent: Wednesday, August 6, 2014 12:17 AM To: cas-user@lists.jasig.org Subject: RE:[cas-user] Java-sourced custom attributes

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

2014-08-06 Thread Richard Wiseman
There are lots of commented-out elements from my various attempts and I've scrubbed out the database details but here it is. Thanks! -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see

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

2014-08-06 Thread Misagh Moayyed
and see what's coming out. -Original Message- From: Richard Wiseman [mailto:richard.wise...@bt.com] Sent: Wednesday, August 6, 2014 12:58 AM To: cas-user@lists.jasig.org Subject: RE:[cas-user] Java-sourced custom attributes not being released There are lots of commented-out elements from my

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

2014-08-06 Thread richard . wiseman
! I'll turn on debug and see what it says. Regards, Richard -Original Message- From: Misagh Moayyed [mailto:mmoay...@unicon.net] Sent: 06 August 2014 09:24 To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released CAS is not looking at your

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

2014-08-06 Thread richard . wiseman
. Regards, Richard -Original Message- From: richard.wise...@bt.com [mailto:richard.wise...@bt.com] Sent: 06 August 2014 09:41 To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released Thanks. So does CAS is not looking at your handler

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

2014-08-06 Thread Misagh Moayyed
Answers inline. -Original Message- From: richard.wise...@bt.com [mailto:richard.wise...@bt.com] Sent: Wednesday, August 6, 2014 1:41 AM To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released Thanks. So does CAS is not looking at your

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

2014-08-06 Thread richard . wiseman
. Regards, Richard -Original Message- From: Misagh Moayyed [mailto:mmoay...@unicon.net] Sent: 06 August 2014 09:24 To: cas-user@lists.jasig.orgmailto:cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released CAS is not looking at your

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

2014-08-06 Thread richard . wiseman
when I make the serviceValidate call… Regards, Richard From: richard.wise...@bt.com [mailto:richard.wise...@bt.com] Sent: 06 August 2014 10:28 To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released Thanks – that definitely helped! I’m getting

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

2014-08-06 Thread richard . wiseman
: richard.wise...@bt.com [mailto:richard.wise...@bt.com] Sent: 06 August 2014 11:14 To: cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released I think I’ve found the problem! It’s using casServiceValidationSuccess.jsp from WEB-INF/view/jsp/protocol/2.0 not WEB-INF

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

2014-08-06 Thread Misagh Moayyed
: Misagh Moayyed [mailto:mmoay...@unicon.net] Sent: 06 August 2014 11:24 To: cas-user@lists.jasig.org mailto:cas-user@lists.jasig.org Subject: RE: [cas-user] Java-sourced custom attributes not being released Can you point your client to /p3/serviceValidate instead? From: richard.wise...@bt.com

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