Authentication via Windows / LDAP (non-SQL Server) accounts is controlled by the integratedSecurity flag within the JDBC connection URL. This setting is disabled by default, which falls back to standard SQL Server authentication.
Windows authentication can be enabled by appending this string to end your database connection URL:
;integratedSecurity=true
For example:
jdbc:sqlserver://samplehost\DbInstance;Database=DbName;integratedSecurity=true
Depending on your Data360 Analyze version, you may need to add an extra DLL (sqljdbc_auth.dll) that allows the driver to use Windows authentication. You'll know if you need the DLL or not if you add integratedSecurity, run the node, and get an error saying that the database driver doesn't support Windows authentication. If you get this error, the instructions to download and add sqljdbc_auth.dll can be found here: How to enable SQL Server Integrated Security.