Hi @Cross, Don (Omaha) ,
Please using authenticationScheme=JavaKerberos replace authenticationScheme=NTLM in your connection string.
According to MS document;
The Microsoft JDBC Driver for SQL Server allows an application to use the authenticationScheme connection property to indicate that it wants to connect to a database using NTLM v2 Authentication.
The following properties are also used for NTLM Authentication:
•domain = domainName (optional)
•user = userName
•password = password
•integratedSecurity = true
Other than domain, the other properties are mandatory, the driver will throw an error if any are missing when the NTLM authenticationScheme property is used.
This is a local connection or remote connection? If this is a remote connection, did the two servers under same domain?
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.