Identity Service / Integration service

Please complete the details below then remove this line:


Volt MX Version: v10.0.9
Operating System: win11
Database (if appropriate): Microsoft SQL Server
Server: Tomcat


Problem/Query:

I have a table with customer access data, including encrypted passwords. How do I create an Identity service in Foundry that uses this table? I already have access to it in Foundry as an Integration Service.

I’ve already consulted help tutorials, Gemini, etc., but I can’t understand and complete the setup.

Hi @cristech1970 thank you for your question. Foundry supports using an Integration Service (which connects to your Relational Database table) as the backing provider for a Custom Identity Service. You can configure a custom identity service in Foundry according to our documentation:

Obrigado pela resposta, consegui avançar um pouco, mas ainda não deu certo. Criei um agente java e na autenticação ele retorna o json:

{
"security_attributes": {
"session_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyaWQiOiIwOTk5OCIsICJyb2xlIjoiY2xpZW50ZSJ9.BGsK_RPbJRZJWdCCPHXZZn30EbHJmClbTNr24E-D_cY"
},
"user_attributes": {
"password": "",
"name": "Nome Cliente",
"user_id": "09998"
}
}

E o Identity custom no foundry da a seguinte mensagem de erro:
{
“details”: {
“message”: “‘user_id’ is missing in ‘user_attributes’”,
“errcode”: 502,
“errmsg”: “‘user_id’ is missing in ‘user_attributes’”
},
“httpstatus”: “Unauthorized”,
“requestid”: “bebf3cd3-8493-487f-845a-e33a534ea7d8”,
“domain”: “AUTH”,
“code”: 0,
“mfcode”: “Auth0”,
“message”: “Success”
}

Sucesso. Desenvolvemos um método de autenticação usando como back-end um base no HCL Domino 12 e agents java como api para acesso, cadastro de usuário, login

Thanks for the response as per you confirmation you are able to develope an authentication method using an HCL Domino 12 database as the back-end and Java agents as the API for access, user registration, and login.