Re: [cas-user] No ConditionalOnMissingBean for argumentExtractor

2017-06-23 Thread Yaroslav Panych
Well,sometimes redefining bean in deployerContextConfig.xml works. Just override configuration itself. Copy it from cas sources into your project, modify and build it. Final .war will contain your .class in root(/WEB-INF/classes/..), which has higher priority than one packed in .jar. Unfortunatelly

Re: [cas-user] [CAS 5.0.3] Application Not Authorized issue

2017-03-25 Thread Yaroslav Panych
Dude, your service registry has NOTHING to do with Delegated authentication! All you need is set properties in cas.properties https://apereo.github.io/cas/5.0.x/installation/Configuration-Properties.html#pac4j 2017-03-23 19:09 GMT+02:00 AJ : > Hi, > > > > I'm trying to test Oauth 2.0 authorization

[cas-user] Apply jasypt encoding to properties

2017-03-19 Thread Yaroslav Panych
Hello I need apply Jasypt encoding for some cas.properties (e.g. cas.some.property=ENC(encoded.value) ) I did for cas 4.0.x by configuring propertyPlaceholderConfigurer bean, but since now there are spring cloud config, I do not thing that way is applicable. Any ideas? -- - CAS gitter chatroo

[cas-user] cas 5 + pacj4j+cas - SSL problem

2017-03-05 Thread Yaroslav Panych
Hello I have next setup: cas 4.0.x - my main running CAS service cas 5.0.3 - newer version we transitioning into I setup Delegate Authentication on cas 5 into cas 4 using pac4j-cas module, so cas4 does authentication while we testing cas 5 features. Here we have 2 problems: 1) While in developm

[cas-user] Delegate login UI to other service

2017-03-02 Thread Yaroslav Panych
Hello I have such task: CAS 5. Instead of login form displayed to user I need it to redirected to other 3rd party service where user performs authentication. 3rd party service will generate token(only token), which can be transported back to my CAS (via 302 redirect of course) as credential. My

[cas-user] Migratrion from 4.0.x to 5.0.x

2017-02-18 Thread Yaroslav Panych
Hello My task is to migrate from 4.0.x to 5.0.x. Problem is, a lot of changes were made into CAS, for instance: there is no more cas-server-integration-support, neither no more cas-server-webapp-support. I cannot find clear description what was move, where and why. Any hints? -- - CAS gitter

Re: [cas-user] How to debug CAS with Intellij IDEA

2017-02-16 Thread Yaroslav Panych
There is no difference at all in debugging CAS comparing to other web applications. Just select proper configuration to run web container(e.g. tomcat), or attach to existing running tomcat. All you need to tweak in your project is add dependency org.jasig.cas:cas-server-webapp as runtime scope(or m

[cas-user] cas + OpendID Connect

2017-02-12 Thread Yaroslav Panych
Hello Is there any ready/3rd-party module which adds to cas server ability to be OpenID Connect provider? I know there are artifacts which make it possible to add OpenID and OAuth abilities to cas, but "OpenID Connect 1.0 is a simple identity layer on top of the OAuth 2.0 protocol." i.e. neith

Re: [cas-user] Commercial companies using CAS?

2016-12-13 Thread Yaroslav Panych
It is pretty raw for safe commercial use. I use it(4.0.x branch) sso for personal cabinet for local telco(and related applications), and I was forced to rewrite some parts. And some critical parts are pending. Most problems caused by not mature ticket registry architecture. It is just will not work

Re: [cas-user] CAS shared storage

2016-11-11 Thread Yaroslav Panych
We do deploy into both nodes. Sharing CATALINA_BASE is really bad idea(it contains internal tomcat state). Moreover, my cas nodes are both active, behind balancing server. Out cas update(once per month usually) procedure is simple: stop balancing into node, stop node, update .war, start node, star

[cas-user] Re: Can application get TGT ticket?

2016-11-01 Thread Yaroslav Panych
You can export TGT in serviceValidate endpoint. We do that there(in 4.0.x) -- - CAS gitter chatroom: https://gitter.im/apereo/cas - CAS mailing list guidelines: https://apereo.github.io/cas/Mailing-Lists.html - CAS documentation website: https://apereo.github.io/cas - CAS project website: https:/