Hello, I would like to use a MYSQL database table that I have created. Currently, I am using the MYSQL database, but I do not want to use the "act_id_user" table created by Camunda. Instead, I would like to use the "users" table that I have created. Tha

Hi @Nitesh_Jaitwar,

to achieve this, you have to provide your own implementation of the IdentityService interface: Identity Service | docs.camunda.org

Hope this helps, Ingo

1 Like

Dear @Ingo_Richtsmeier ,
Can you please provide me GitHub project link for the reference.
Best Regards,
Nitesh Jaitwar

Hi @Nitesh_Jaitwar,

you can find all the sources here: GitHub - camunda/camunda-bpm-platform: Flexible framework for workflow and decision automation with BPMN and DMN. Integration with Quarkus, Spring, Spring Boot, CDI.

The engine code itself is in the engine folder.

Here you can find some examples of identity provider implementations: camunda-bpm-platform/engine/src/main/java/org/camunda/bpm/engine/impl/identity/db at master · camunda/camunda-bpm-platform · GitHub

Hope this helps, Ingo

Subject: Request for Guidance on Overriding Camunda Service for Authentication with MySQL Database.

Dear Mr. Ingo Richtsmeier,

I trust this message finds you well. I am reaching out to seek your guidance on a specific task related to Camunda, and I believe your expertise in this area will be invaluable.

I am currently working on a project that involves authenticating users in Camunda through a MySQL Database table that I have created. I have been exploring the documentation and resources available, but I am looking for a step-by-step guide or any relevant resources that can assist me in overriding the Camunda Service for authentication.

Could you kindly share any resources or provide a step-by-step walkthrough to help me accomplish this task successfully? Your insights will greatly enhance the efficiency of our implementation, and I am eager to benefit from your wealth of knowledge in this domain.

Thank you in advance for your time and assistance. I appreciate your support and look forward to hearing from you soon.

Best regards,

Nitesh Jaitwar
https://join.skype.com/invite/w4LdkWPXs9Iy

Hi @Nitesh_Jaitwar,

after googling, I found this example: GitHub - hashlash/example-camunda-custom-identity-service: An example for Camunda's "Custom Identity Provider" using Camunda Spring Boot Starter

It shows how to implement a custom identity provider using a spring repository, and you have to adopt it to query your MYSQL user table.

Hope this helps, Ingo

1 Like