For example : Does Camunda support web service based Identity service
( I know it supports database for Ident service )
Search SSO on the forum. You will find others working on different providers. LDAP is the only provided alternate ID provider. You will have to write your own for other sources.
Hi @Ashutosh ,
The authorization details indeed need to exists within Camunda BPM. We actually decode the JWT in the authentication provider and obtain all necessary data from that object (username and groups) and create memberships on the fly if needed.
We do not implement a completely custom filter. We reused the one from the example and changed it to what we needed. Instead of checking the basic authentication details with the data in the Camunda Engine, we decode the JWT from the request an…
Hi,
I am using Keycloak (https://www.keycloak.org ) for SSO (authentication and authorization) for my camunda springboot REST services. Is there a reference implementation of camunda with keycloak boot adapters?
With the camunda boot app, if I add the “keycloak-spring-boot-adapter” jar as dependency, I am not able to access http://localhost:8080/app/admin/default/ page. It throws an error saying
“WARN [FormAuthenticator-log:179] No login page was defined for FORM authentication in context …