Message 1 of 22
VDF error : The requested security protocol is not supported.
Not applicable
02-13-2020
02:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
When trying to connect to Vault using the VDF API I get a "NotSupportedException: The requested security protocol is not supported."
I'm not sure how to proceed or what the error means. As far as I can see I don't need to configure any security protocol or do I?
Imports VDF = Autodesk.DataManagement.Client.Framework
Imports Autodesk.DataManagement.Client.Framework.Vault.Services
Imports Autodesk.DataManagement.Client.Framework.Vault.Currency.Connections
Imports ACW = Autodesk.Connectivity.WebServices
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim results As VDF.Vault.Results.LogInResult = VDF.Vault.Library.ConnectionManager.LogIn("XX.XXX.XX.XX", "Vault", "UserName", "123456", VDF.Vault.Currency.Connections.AuthenticationFlags.Standard, Nothing)
Dim connection As VDF.Vault.Currency.Connections.Connection = results.Connection
If Not results.Success Then
MsgBox("Login error")
Return
End If
End Sub
End Class
PS: I'm very sad that there's no Python API for Vault. Just putting it out there.
PS2: there's a bug in the forum software that prevented me from posting. When posting using Firefox the forum returns an error "invalid HTML". 🙄 😫

