Re: [cas-user] Re: No principal was found in the response from the CAS server.

2019-11-07 Thread Steve Cheung
Hi Andy, it works now, thanks. On Fri, Nov 8, 2019 at 11:46 AM Andy Ng wrote: > Hi Steve, > > See if disabling `mfa-duo` this helps: > https://github.com/cas-projects/cas-sample-java-webapp/issues/14 > > Cheers! > - Andy > > -- > - Website: https://apereo.github.io/cas > - Gitter Chatroom:

[cas-user] Re: No principal was found in the response from the CAS server.

2019-11-07 Thread Andy Ng
Hi Steve, See if disabling `mfa-duo` this helps: https://github.com/cas-projects/cas-sample-java-webapp/issues/14 Cheers! - Andy -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions:

[cas-user] Re: CAS 6.1 : configure json service management to operate with an http application

2019-11-07 Thread Andy Ng
Hi Anthony, Your serviceId should return *http *only back to CAS, seems weird it return back *https*. - Are you sure jenkins didn't automatically transform your *http *request into *https*? - You should capture your network tab to check out the network. BTW, Your serviceID seems too loose, I

[cas-user] No principal was found in the response from the CAS server.

2019-11-07 Thread Steve Cheung
Hi all, I had setup a cas server cas-overaly-template 6.2.x and a client app ( https://github.com/cas-projects/cas-sample-java-webapp) on my local environment Once I successfully login to my cas server using the client app, it prompts http error 500 (No principal was found in the response

Re: [cas-user] Re: Issue with Ticket Registry Cleanup (MongoDB - CAS 5.3.12.1

2019-11-07 Thread Andy Ng
Hi Paul, No problem, We help each other in this group here :) - Although you should try, but upgrading to 5.3.14 probably won't fix you bug, seems like that 5.3.14 is basically the same as 5.3.13 but with an library removed, and 5.3.13 only fix an issue related to YubiKey

Re: [cas-user] Re: Issue with Ticket Registry Cleanup (MongoDB - CAS 5.3.12.1

2019-11-07 Thread Paul Chauvet
Hi Andy, Apologies for the belated reply here. I really appreciate your time and effort looking into this! I'm looking into options (downgrading to 5.2.9, upgrading to 5.3.14) for a fix. Next week is our advance registration - one of the busiest periods - so I'd prefer to avoid major

Re: [cas-user] Attribute Resolution and Merging Radius and LDAP

2019-11-07 Thread Colin Ryan
Andy, Seems almost like your "issue" with the mysterious tight linkage to MFA and Radius and this are related. Is there a way to enable MFA radius but have it behave as a single factor? Side note is there a way using Radius Authentication to dynamically add a realm identifier to the users

[cas-user] Re: JWT token creation or response for CAS-SAML setup

2019-11-07 Thread Raheem Shaik
can somebody help me on this as i haven't get any update on this. On Thursday, October 24, 2019 at 3:25:45 PM UTC+5:30, Raheem Shaik wrote: > > I have configured CAS SAML with below configuration values and receiving > the SAML response. Could you please some one guide me,how to configure CAS >

[cas-user] how to configure cas to load cas.properties from dynamo db

2019-11-07 Thread Raheem Shaik
Any idea how we can configure cas to load cas.properties (hazelcast) from dynamodb --   *Inmar Confidentiality Note*:  This e-mail and any attachments are confidential and intended to be viewed and used solely by the intended recipient.  If

[cas-user] how to configure cas to load cas.properties from dynamo db

2019-11-07 Thread Raheem Shaik
Any idea how we can configure cas to load cas.properties (hazelcast) from dynamodb --   *Inmar Confidentiality Note*:  This e-mail and any attachments are confidential and intended to be viewed and used solely by the intended recipient.  If

Re: [cas-user] Re: Too many LDAP connections with 6.0.5

2019-11-07 Thread Trenton D. Adams
This is also happening on Java 8 and 5.2.x I'll have to look into whether that's valid for 5.2.x. On 11/6/19 7:16 AM, n99 wrote: For anyone else who finds themselves scratching their head over this cas.authn.ldap[0].providerClass=org.ldaptive.provider.unboundid.UnboundIDProvider is the

[cas-user] CAS 6.1 : configure json service management to operate with an http application

2019-11-07 Thread ratm
Hello, How to configure cas 6.1 json service management (cas-overlay-template-6.1) to operate with an http application ? My json file : { /* * Service jenkins */ "@class" : "org.apereo.cas.services.RegexRegisteredService", "id" : 1, "name" : "Jenkins", "serviceId" :

[cas-user] Re: configure CAS 6.1 to operate with another application

2019-11-07 Thread ratm
Thanks rbon, Andy Ng and Pol Dellaiera Le mardi 5 novembre 2019 15:26:02 UTC+1, ratm a écrit : > > Hello, > > I'm trying to configure jenkins to use cas 6.1 for authentification with : > > https://apereo.github.io/cas/6.1.x/services/Service-Management.html >

Re: [cas-user] Re: configure CAS 6.1 to operate with another application

2019-11-07 Thread ratm
I found ! in cas.properties cas.*service-registry*.json.location=file:/etc/cas/services is not good for cas 6.1 but doesn't produce an error the good way : cas.serviceRegistry.initFromJson=true cas.serviceRegistry.json.location=file:/etc/cas/services Le jeudi 7 novembre 2019 11:18:43

Re: [cas-user] Hazelcast-Ticket Registry config

2019-11-07 Thread David Curry
I have not done this with Tomcat 9 / Java 11 or CAS 6.x, but it seems to me you need to fix this: 07-Nov-2019 05:57:51.789 WARNING [main] com.hazelcast.instance.HazelcastInstanceFactory.null Hazelcast is starting in a Java modular environment (Java 9 and newer) but without proper access to

Re: [cas-user] Hazelcast-Ticket Registry config

2019-11-07 Thread Andy Ng
>From your error logs seems like you are using 6.2.0-SNAPSHOT version of CAS. SNAPSHOT version is going to break sometimes, so better not relies on it for stability. One suggestion might be to use an latest stable version, something like 6.1.1. Another thing is that for your latest properties

Re: [cas-user] Hazelcast-Ticket Registry config

2019-11-07 Thread M.Pedis
Hi Dave , Thanks for your reply . I have tested if it works or not with as you mentioned before , but it didnt work. Also i have newly errors about other sites . Briefly explain my env. ; - I have two CAS -- casuno.example.edu.tr and casdos.example.edu.tr and one virtual ip behind

Re: [cas-user] Re: configure CAS 6.1 to operate with another application

2019-11-07 Thread ratm
Hello, On your cas 5.3 example json file are under cas-overlay-docker/etc/cas/config/services/Everything-1.json But with cas-overlay-template-6.1 the structure is : cas-overlay-template-6.1/etc/cas/services with cas-overlay-template-6.1 where should we put the json files ? .. Le jeudi 7

Re: [cas-user] Attribute Resolution and Merging Radius and LDAP

2019-11-07 Thread Andy Ng
Hi Colin, I have take a look into your problem, which is using *Radius Authentication a*nd *LDAP *attribute, and LDAP attribute don't come up. I am using CAS 6.1.1 + Freeradius + OpenLDAP as demo, but I think the solution should be applicable to CAS 6.0 and other technology as well.

Re: [cas-user] Re: configure CAS 6.1 to operate with another application

2019-11-07 Thread ratm
Hello, The only log i have concerning services : 2019-11-07 10:25:29,447 INFO [org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration] - < 2019-11-07 10:25:30,792 WARN [org.apereo.cas.config.CasCoreServicesConfiguration] - 2019-11-07 10:25:31,958

[cas-user] cas 6.2 build using overlay with monitor support is not working

2019-11-07 Thread Ahmad Jeidani
Dear, I am new to cas family. I am trying to build cas 6.2. with monitoring support using this guide: https://apereo.github.io/2019/11/03/cas62-gettingstarted-overlay/ but no success. I tried to build without monitoring support, the build was successful. Please, any help Here are my configs:

[cas-user] Re: Issue with Ticket Registry Cleanup (MongoDB - CAS 5.3.12.1

2019-11-07 Thread Andy Ng
Hi Paul, I have done some investigation on your case, and: I can reproduce your error case using my testing docker with CAS 5.3.x and MongoDB 4 ticket registry, after a single login, I can see the error same as yours occurs. Below are my error log as well: