Message 1 of 4
Library.ConnectionManager.LogIn Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm not sure why this code doesn't work:
string VaultServerName = "VaultServer" string VaultDatabase = "VaultDatabase" LogInResult logInResult = Library.ConnectionManager.LogIn(VaultServerName, VaultDatabase, "Administrator","Password", AuthenticationFlags.Standard, null);
But this code does:
LogInResult logInResult = Library.ConnectionManager.LogIn("VaultServer", "VaultDatabase", "Administrator","Password", AuthenticationFlags.Standard, null);Error:
{"The type initializer for 'Autodesk.Connectivity.WebServicesTools.WebServiceManager' threw an exception."}
Doesn't make sense why that line doesn't except anything but the entry manually included?
