[cas-user] Dynamic Themes per Service

2020-03-18 Thread Mr Rao
Hi, I'm trying to implement dynamic themes in CAS deployments and found a nice documentation on this. All I want to do is change style/logo and I do not want to copy the cas.js and cas.css files to theme folder. Also I want to get styles and logo from db instead of properties file. Is this

[cas-user] CAS 5.2.3 running on tomcat 9 and openjdk11

2019-12-09 Thread Mr Rao
Hi, I have deployed CAS 5.2.3 on tomcat 9 and running under open jdk 11 ( after recompiling my project in java11) . I started seeing performance issues with logout, ticket validation etc, this is happening occasionally. Is CAS 52.3 compatible with open jdk11? I suspect the all async calls are

Re: [cas-user] CAS 5.2.x OAuth2 Server support

2019-10-17 Thread Mr Rao
g." suffix=".txt" > >pattern="%h %l %u %t %r %s %b" /> > > and update it to > > directory="logs" > >prefix="localhost_access_log." suffix=".txt" > pattern

[cas-user] CAS 5.2.3 - CAS server support generate JWT token

2019-10-17 Thread Mr Rao
Hi, I'm using cas 5.2.3 and enabled oauth server support, I need to do follow things. Is it possible? Also this cas is used for SSO in web applications and delegated authentication for other apps. In addition to existing supported authentication I want to use CAS as oAuth Server for API

[cas-user] CAS 5.2.x OAuth2 Server support

2019-10-16 Thread Mr Rao
Hi, Currently we use CAS for SSO between web applications, now I'm trying to use for restful webservices token based authentication using OAuth2/JWT tokens. When I was playing with it I noticed that for accessing token we need to pass client_id, client_secret for Grant type client

Re: [cas-user] Disable HttpBasedServiceCredentialsAuthenticationHandler? CAS 5.2.3

2019-01-16 Thread Mr Rao
Hello, Any one knows if we need to disable HttpBasedServiceCredentialsAuthenticationHandleror this is safe to leave it ? Thanks Rao -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions:

[cas-user] Disable HttpBasedServiceCredentialsAuthenticationHandler? CAS 5.2.3

2019-01-07 Thread Mr Rao
Hi, When I debug PolicyBasedAuthenticationManager.authenticateInternal I did noticed three authentication handlers. 1) My Custom AuthenticationHandler 2 ) ClientAuthenticationHandler 3 ) HttpBasedServiceCredentialsAuthenticationHandler I'm only using my customer handler and

[cas-user] Re: AbstractServicesManager.findServiceBy called to many times( 17 times) for login

2018-12-17 Thread Mr Rao
Actually its 24 times for each service request. On Monday, December 17, 2018 at 1:39:59 PM UTC-8, Mr Rao wrote: > > Hi, > I would like to implement my custom serviceManager to create a Service > based on passed in Service object/id on the fly since we do not want to go > throu

[cas-user] Re: AbstractServicesManager.findServiceBy called to many times( 17 times) for login

2018-12-17 Thread Mr Rao
This is cas 5.2.3 version. On Monday, December 17, 2018 at 1:39:59 PM UTC-8, Mr Rao wrote: > > Hi, > I would like to implement my custom serviceManager to create a Service > based on passed in Service object/id on the fly since we do not want to go > through all services

[cas-user] AbstractServicesManager.findServiceBy called to many times( 17 times) for login

2018-12-17 Thread Mr Rao
Hi, I would like to implement my custom serviceManager to create a Service based on passed in Service object/id on the fly since we do not want to go through all services for every login to find matching service. When I was implementing this I noticed that AbstractServicesManager.findServiceBy

Re: [cas-user] How to disable CasMetricsConfiguration in CAS 5.2.3?

2018-12-17 Thread Mr Rao
enderRef defined; > if not the root logger (typically console => catalina.out) will take over. > In other words, you have to comment out the logger, as below, not just the > appender ref. > > Ray > > On Wed, 2018-12-12 at 14:03 -0800, Mr Rao wrote: > > Thanks for y

Re: [cas-user] How to disable CasMetricsConfiguration in CAS 5.2.3?

2018-12-12 Thread Mr Rao
> on behalf of Ray Bon [rb...@uvic.ca ] > *Sent:* Wednesday, December 12, 2018 11:10 AM > *To:* cas-...@apereo.org > *Subject:* Re: [cas-user] How to disable CasMetricsConfiguration in CAS > 5.2.3? > > Rao, > > You can comment it out in log4j2.xml: > > >

[cas-user] How to disable CasMetricsConfiguration in CAS 5.2.3?

2018-12-11 Thread Mr Rao
Hi, We have decided to disable CasMetricsConfiguration I couldn't find property in cas.properties file to disable this? I do not want any perfStatsLogger at all. Any help is greatly appreciated. This is filling up log files/disk space. Thanks Rao 018-12-11 18:22:13,666 severity=INFO,

[cas-user] Re: CAS 5.2.3 - Memcache monotiring

2018-10-22 Thread Mr Rao
Fstatus=D=1=AFQjCNGKV-dARq3gGClLgQlCYg8rZD_EGQ> ? Thanks Rao On Sunday, October 21, 2018 at 11:34:42 PM UTC-7, Mr Rao wrote: > > Hi, > We have been monitoring memcache using https://casurl/cas/status > <https://www.google.com/url?q=https%3A%2F%2Fcasurl%2Fcas%2Fstatus=D=1=AFQjCNGKV-dARq3gGClLgQl

[cas-user] CAS 5.2.3 - Memcache monotiring

2018-10-22 Thread Mr Rao
Hi, We have been monitoring memcache using https://casurl/cas/status cas 3.x version, we changed Monitoring bean to pass only our custom memcache health check. I see that in new CAS health check has lot of end points and also all end points are secured , all I want to do is create custom

[cas-user] Adding Request Param to CAS login and logout.

2018-10-04 Thread Mr Rao
Hi, Currently I've implemented delegated authentication using CAS 5.2.3 with other apps for external IDP logins, i.e ADFS, OKTA etc.. When the user click on app which is integrated with CAS SSO ,they pass a param called idp=adfs and when the user logout from app1 it will go to logout to

[cas-user] Re: CAS 5.2.3 -support for XSS protection

2018-10-03 Thread Mr Rao
Hi Andy, These settings for setting http response and by default they are enabled. I was looking for stripping off the xss script code from http request params and headers. Here is what I did and seems working fine. I've created XSSFilter and added it to FilterChain by using below code. My

[cas-user] CAS 5.2.3 -support for XSS protection

2018-10-02 Thread Mr Rao
Hi, We were using XSSFilter in old version of cas since its using web.xml we were able to add this to web.xml. Can any one help on how can I do this in CAS 5.2.3? Basically we want to protect from cross site scripting attacks. Chava -- - Website: https://apereo.github.io/cas - Gitter

[cas-user] Re: CAS 5.2.3 IpAddress blocking& Password expiry messages & Service Maintenance notifications

2018-09-05 Thread Mr Rao
Any ideas? I also want to pass username to password change url when it triggers force to change password. On Thursday, May 17, 2018 at 9:08:15 AM UTC-7, Mr Rao wrote: > > Hi, > Any one has ideas on this? > > Rao > > > On Wednesday, May 16, 2018 at 10:12:13 PM UTC-7

[cas-user] CAS 5.2.3- Enable CAS SAML IDP

2018-08-15 Thread Mr Rao
Hi, I can't find any good documentation on how to enable CAS as SAML IDP . I've added below dependency and trying to hit IDP meta data url https://localhost:8443/cas/idp/metadata and I get page not found error. org.apereo.cas cas-server-support-saml ${cas.version} Also, Is it

[cas-user] Re: CAS 5.2.3 IpAddress blocking& Password expiry messages & Service Maintenance notifications

2018-05-17 Thread Mr Rao
Hi, Any one has ideas on this? Rao On Wednesday, May 16, 2018 at 10:12:13 PM UTC-7, Mr Rao wrote: > > Hi, > I've been migrating from CAS 3.2.5 to CAS 5.2.3. We have below > requirements in current code and need help on how to implement these in new > version of CAS. &g

[cas-user] CAS 5.2.3 IpAddress blocking& Password expiry messages & Service Maintenance notifications

2018-05-16 Thread Mr Rao
Hi, I've been migrating from CAS 3.2.5 to CAS 5.2.3. We have below requirements in current code and need help on how to implement these in new version of CAS. 1) IP address blocking per user basis , error message should be added dynamically instead of using messages.properties. 2) After

[cas-user] CAS 5.2.3 Memcached Help!

2018-05-09 Thread Mr Rao
Hi, Any one using CAS 5.2.3 with Memcached to cache tickets? I'm getting below error. When I see the source code I do not see afterPropertiesSet method net.spy.memcached.spring.MemcachedClientFactoryBean it only implements FactoryBean. See below jars in WEB-INF/lib spymemcached-2.11.4

[cas-user] CAS 5.2.3 delegated authentication to ADFS

2018-04-08 Thread Mr Rao
Hi, I've many apps using CAS as single signon. We have few customers wanted to use ADFS to login instead of CAS. I was trying to find a good example of how to use delegated authentication from CAS to ADFS using both SAML and WS-Federation When I use 5.2.2/5.2.3 it always going to standards

[cas-user] Upgrade CAS 3.5.2 to CAS 5.x

2018-01-12 Thread Mr Rao
Hi, I would like to upgrade CAS from 3.5.2 to latest 5.x version, 1) Is there any easy way or special instructions to upgrade it? 2) I also want to support multiple IDPs vendors and use CAS as IDP , this should be based on customer? Do I need to customize login web flow to use different

Re: [cas-user] CAS ADFS Integration

2017-12-28 Thread Mr Rao
Hi Anton, Can you share your demo app? I've exact same requirement. Also which version of cas you are using? Thanks Rao On Monday, July 24, 2017 at 11:24:04 PM UTC-7, Антон Шихмат wrote: > > Okay, so I did it. > I've updated loginform.html with a link to the adfs: > > >