
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I like to connect my program to the Vault using windows authentication, like the users do everyday when using Vault Explorer.
Just for testing I created this line, which works fine:
Me.Conn = VDF.Vault.Library.ConnectionManager.LogIn(Me.VaultServerName, Me.VaultDBName, Me.VaultUserName, Me.VaultUserPassword, VDF.Vault.Currency.Connections.AuthenticationFlags.Standard, Nothing).Connection
I replace this line with the new version:
Me.Conn = VDF.Vault.Library.ConnectionManager.LogIn(Me.VaultServerName, Me.VaultDBName, Me.VaultUserName, Me.VaultUserPassword, VDF.Vault.Currency.Connections.AuthenticationFlags.WindowsAuthentication, Nothing).Connection
I understand username and password are ignored when using WA.
Why am I able to run the first line and not the second variant?
Solved! Go to Solution.