Re: [cas-user] CAS 5.2.6 + Delegated Authentication + Microsoft Azure AD + How to map attributes

2018-10-08 Thread Łukasz Woźniak
Hi, I'm working on integration with Azure AD too. I was able to connect wia OpenID. To map attribute You need to define default attribute. Example below: cas.authn.attributeRepository.merger=REPLACE cas.authn.releaseProtocolAttributes=true

[cas-user] CAS 5.3.x/5.2.x Release Announcements

2018-10-08 Thread Misagh Moayyed
CAS 5.3.4 is released: https://github.com/apereo/cas/releases/tag/v5.3.4 CAS 5.2.8 is released: https://github.com/apereo/cas/releases/tag/v5.2.8 --Misagh -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 -

[cas-user] Logout - PGT not removed from ticket registry

2018-10-08 Thread David Wise
Hi Everyone, I have an application that makes heavy use of Proxy Tickets and am using Redis as a ticket registry. When my user logs out of CAS, the PGT does not get destroyed but what I assume to be the parent TGT does. I get the same behavior using Hazelcast. When I use the

Re: [cas-user] CAS 5.3.3 management failed to save edits

2018-10-08 Thread Travis Schmidt
Try this against 5.3.4-SNAPSHOT On Mon, Oct 8, 2018 at 1:20 PM Travis Schmidt wrote: > Not sure about the problem with creating the repository on Windows. Never > tried to run on a windows machine, so maybe someone else can help witnh > that. > > As for not being able to save, that is a bug

Re: [cas-user] CAS 5.3.3 management failed to save edits

2018-10-08 Thread Travis Schmidt
Not sure about the problem with creating the repository on Windows. Never tried to run on a windows machine, so maybe someone else can help witnh that. As for not being able to save, that is a bug that you have uncovered. If you switch back to only use JPA, you should be able to make edits in

[cas-user] CAS 5.3.3 management failed to save edits

2018-10-08 Thread Yan Zhou
Hello, CAS 5.3.3 management app is loading service registry in database. That works correctly. But when edit and save, got error. this is my management.properties. mgmt.enableVersionControl=false mgmt.enableDiscoveryEndpointCall=false cas.serviceRegistry.initFromJson=false

[cas-user] Re: Deadlocks and Uncommited Transaction

2018-10-08 Thread Trevor Fong
Anyone have any ideas why we're getting deadlocks against the tables LOCKS, SERVICETICKET, TICKETGRANTINGTICKET? Thanks a lot Trev On Friday, October 5, 2018 at 4:50:40 PM UTC-7, Trevor Fong wrote: > Hi There,  > > > We've trying out CAS 5.2.4 in a clustered environment with the ticket >

[cas-user] Re: param.service in templates changes between versions

2018-10-08 Thread Andy Ng
Hi Ian, I don't have an answer for your question, but since nobody is commenting so I thought I will give it a try :) CAS 5.3 is using *Thymeleaf *instead of jsp in CAS 4.x, so you need some changes before making the jsp works again... If I am not misunderstanded, *param.service* in jsp

Re: [cas-user] CAS 5.3, where is LOGGER defined with @Slf4j?

2018-10-08 Thread jaya swamy
How to check whether default authentication configuration is casuser::Mellon or taking from configured database Using logs On Mon 8 Oct, 2018, 8:26 PM Robert Oschwald, wrote: > https://github.com/apereo/cas/blob/5.3.x/lombok.config > > > > Am 08.10.2018 um 16:53 schrieb Robert Oschwald : > >

Re: [cas-user] CAS 5.3, where is LOGGER defined with @Slf4j?

2018-10-08 Thread Robert Oschwald
https://github.com/apereo/cas/blob/5.3.x/lombok.config > Am 08.10.2018 um 16:53 schrieb Robert Oschwald : > > https://projectlombok.org/features/log > > > > See lombok.config file > You need

Re: [cas-user] CAS 5.3, where is LOGGER defined with @Slf4j?

2018-10-08 Thread Robert Oschwald
https://projectlombok.org/features/log See lombok.config file You need this file in your overlay project. > Am 08.10.2018 um 16:32 schrieb Yan Zhou : > > Hello, > > Looking at CAS 5.3 source code, I need to customize action class, so I > create a

[cas-user] Re: CAS 5.3, where is LOGGER defined with @Slf4j?

2018-10-08 Thread Andy Ng
Hi Yan, To make @Slf4j works, see "https://apereo.github.io/cas/developer/Build-Process-5X.html#plugins; the *Lombok plugin *is what you want to look at. Alternatively, going back in time to *CAS 5.2.x* and you will see how LOGGER is originally implemented. Your cited class

[cas-user] CAS 5.3, where is LOGGER defined with @Slf4j?

2018-10-08 Thread Yan Zhou
Hello, Looking at CAS 5.3 source code, I need to customize action class, so I create a class with the same name/package in my overlay, but I cannot resolve compile error on LOGGER. I understand with Lombok and @Slf4j, I get object: log for free. But, I do not know how LOGGER is defined in