Hi i’m trying to connect with azure sql using MSI.
Where no username and password is required.
Where connection url will be
String connectionUrl = “jdbc:sqlserver://SOMEHOSTNAME:1433;database=DBEXAMPLE;Authentication=ActiveDirectoryMsi;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30;”;
I’m able to access the azure sql database using above connection URL if I’m writing a separate program.
But using customized keycloak i’m not able to access.
Can some body help me out.