[cas-user] Removing TicketRegistry database tables

2015-03-23 Thread Adam Causey
We are trying to remove all database dependencies from our CAS installation, and I noticed that a couple of tables related to the ticket registry are getting created in the database on startup - lock, SERVICETICKET, and TICKETGRANTINGTICKET. We now use the Hazelcast ticket registry, so these

Re: [cas-user] Removing TicketRegistry database tables

2015-03-23 Thread Dmitriy Kopylenko
You might want to check and delete any traces of ‘entityManagerFactory’, ‘dataSource’ bean definitions from your overlay’s app ctx configs, etc. D. On Mar 23, 2015, at 11:17 AM, Adam Causey apcau...@vcu.edu wrote: We are trying to remove all database dependencies from our CAS installation,

RE: [cas-user] Extractor did not generate service -- is this an error?

2015-03-23 Thread Misagh Moayyed
It means the request could not identify the target application because none was specified. From: Zico [mailto:mailz...@gmail.com] Sent: Saturday, March 21, 2015 11:27 AM To: cas-user@lists.jasig.org Subject: Re: [cas-user] Extractor did not generate service -- is this an error? Thanks

[cas-user] Troubles with password policy: all successful authentications get successWithWarnings state

2015-03-23 Thread Guillaume Rousse
Hello list. We are using cas server 4.0.0 and OpenLDAP, with password policy support enabled, limited to password quality settings sofar. This morning we activated password expiration, by setting explicit values for pwdMaxAge and pwdExpireWarning attributes. Everything was working as

RE: [cas-user] Troubles with password policy: all successful authentications get successWithWarnings state

2015-03-23 Thread Misagh Moayyed
This is already fixed in master. The problem is here: https://github.com/Jasig/cas/blob/4.0.x/cas-server-core/src/main/java/org/jasig/cas/web/flow/AuthenticationViaFormAction.java The hasWarningMessages, once set to true, will always remain true. Your workaround work now would be to download

Re: [cas-user] Troubles with password policy: all successful authentications get successWithWarnings state

2015-03-23 Thread Guillaume Rousse
Le 23/03/2015 17:15, Misagh Moayyed a écrit : This is already fixed in master. The problem is here: https://github.com/Jasig/cas/blob/4.0.x/cas-server-core/src/main/java/org/jasig/cas/web/flow/AuthenticationViaFormAction.java The hasWarningMessages, once set to true, will always remain true.