Message 1 of 3

Not applicable
01-29-2021
07:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am using the Vault 2021 Prof. SDK connecting to a 2021 server. License manager is in the same server.
using VDF = Autodesk.DataManagement.Client.Framework;
namespace MyTest
{
class Program
{
static void Main(string[] args)
{
var settings = new VDF.Vault.Forms.Settings.LoginSettings()
{
//ServerName = "192.168.1.6",
//VaultName = "test"
};
var conn = VDF.Vault.Forms.Library.Login(settings);
}
}
}
Pretty straight forward code. However when the dialog pops up and I enter details and press OK, it just hangs on "Validating user information". I can cancel it, but I can't get in...
When using the client I can login, no problem. First time it asked for license. After that I can just autologin. But from my own app it's just stuck...
I'm using .NET Framework 4.7.1 and I compile for 64-bit.
Any advice?
Solved! Go to Solution.