[cas-user] Re: cas-management - Service cannot be changed in WebUI

2023-03-29 Thread robertoschwald
Same here with CAS-MGMT 6.6.1 and CAS 6.6.6. Switched back to RegexRegisteredService for now. On Tuesday, 6 December 2022 at 10:15:31 UTC+1 BenDDD wrote: > Hello, > > Thank you Fabio for your feedback. > > Does anyone have a solution to this problem or do I have to open an issue? > > Le lundi 5

[cas-user] Re: CAS Management 6.6.1 - CAS Services Entries Not Editable

2023-03-29 Thread robertoschwald
Same here. The effect here is, that in ngOnInit() line 84 it is asynchronously performing this.loadService(data.resp), but in line 89 of form.component.ts, the form is used synchronously.

[cas-user] Re: How ticket cleanup works in clustered CAS environment

2017-07-26 Thread robertoschwald
A Scheduled Job runs on all nodes (normally DefaultTicketRegistryCleaner), which obtains a lock using the underlying LockingStrategy (e.g. JpaLockingStrategy), and performs the ticket cleaning using the underlying TicketRegistry implementation (e.g. JpaTicketRegistry). All other nodes running

[cas-user] Overloading Bean Configuration does not work in 5.0.4

2017-05-04 Thread robertoschwald
I need to overload the ServiceValidateController Bean by my own configuration bean, but it seems Spring Boot is first using my bean, then again the original one and I don't know why. My bean is called CasOverlayedValidationConfiguration: @Configuration("casOverlayedValidationConfiguration")