<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Vault 2017 Web App Log In issue in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/vault-2017-web-app-log-in-issue/m-p/7457406#M7044</link>
    <description>&lt;P&gt;&lt;FONT color="#333333"&gt;Hi All,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I'm having a bit of trouble logging in to the Vault from a web application.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I found a post on the forum explaining how to solve the problem but for some reason it's not working for me.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;EM&gt;&lt;STRONG&gt;Older post on the forum:&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;A href="https://forums.autodesk.com/t5/vault-forum/vault-2018-web-app-login-issue/td-p/7273764" target="_blank"&gt;Older Post Vault Web App Login Issue&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I will try to explain the steps I've followed to solve the problem, and what the issue is.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;1.&amp;nbsp; Started a new project in Visual Basic 2015 - ASP.NET Web Application (.NET Framework)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;2.&amp;nbsp; Created a new Web Form "Default.aspx" and made some controls (textbox and buttons to mimic the vault login form).&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The code behind this form (just the login action): &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#808080"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT color="#333333"&gt;using System;
using VDF = Autodesk.DataManagement.Client.Framework;

namespace VaultWebApplication.web_forms
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        protected void submitEventMethod(object sender, EventArgs e)
        {
            try
            {
                VDF.Vault.Results.LogInResult results =
                VDF.Vault.Library.ConnectionManager.LogIn(serverTextBox.Text, vaultTextBox.Text, usernameTextBox.Text,
                passwordTextBox.Text, VDF.Vault.Currency.Connections.AuthenticationFlags.ReadOnly, null);

                resultTextBox.Text = results.Success.ToString();
            }
            catch (Exception ex) { resultTextBox.Text = "Error: " + ex.Message.ToString(); }
        }
    }
}&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;3. I've made a Global.asax with code behind:&lt;/STRONG&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT color="#333333"&gt;using System;
using System.Globalization;
using System.Text.RegularExpressions;

using Autodesk.Connectivity.WebServices;
using Autodesk.Connectivity.WebServicesTools;
using System.Reflection;

namespace VaultWebApplication
{
    public class WebApiApplication : System.Web.HttpApplication
    {
        #region Assembly Resolver

        private static Regex assemblyRegEx;
        private static bool Is64Process = false;

        static WebApiApplication()
        {
            
            Is64Process = IntPtr.Size == 8;
            InitRegEx();
            AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
        }

        private static Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            if (IsXmlSerializer(args.Name)) { return null; }

            string[] fields = args.Name.Split(',');
            string assName = fields[0];

            if (assName.EndsWith(".resources", StringComparison.InvariantCultureIgnoreCase)) { return null; }

            Assembly ass = null;

            try
            {
                // First try to locate the assembly in the list of loaded assembly of the current AppDomain
                AssemblyName name = new AssemblyName(args.Name);
                Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
                foreach (Assembly assembly in assemblies)
                {
                    if (name.Name == assembly.GetName().Name) { return assembly; }
                }
                ass = Assembly.LoadFrom(args.Name);
            }
            catch
            {
                // Try to locate the assembly in the directory that contains the AddIn type.
                string basePath = System.IO.Path.GetDirectoryName(new Uri(MethodBase.GetCurrentMethod().DeclaringType.Assembly.CodeBase).LocalPath);
                string subFolder = Is64Process ? "x64" : "x86";
                string assemblyFileName = System.IO.Path.Combine(basePath, string.Format(CultureInfo.InvariantCulture, "{1}\\{0}.dll", new AssemblyName(args.Name).Name, subFolder));

                if(System.IO.File.Exists(assemblyFileName))
                {
                    ass = Assembly.LoadFile(assemblyFileName);
                }
                else
                {
                    string fout = new AssemblyName(args.Name).Name;
                }
            }
            finally { }
            return ass;
        }

        private static void InitRegEx()
        {
            string regex = @"^([\w\.]+)XmlSerializers";
            RegexOptions options = ((RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline) | RegexOptions.IgnoreCase);
            assemblyRegEx = new Regex(regex, options);
        }

        private static Boolean IsXmlSerializer(string name)
        {
            return assemblyRegEx.IsMatch(name);
        }

        #endregion

        protected void Application_Start(object sender, EventArgs e)
        {           
            //Active License
            WebServiceManager.AllowUI = false;
            LicenseManager.Instance.SetActive();
        }
    }
}&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;4. Made a "x64" and "x86" folder in the project and added the necessary .dll's in the folders&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5. Added the clmloader.dll to my debugfolder&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;6. In the web.config file&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  --&amp;gt;
&amp;lt;configuration&amp;gt;
  &amp;lt;configSections&amp;gt;
    &amp;lt;section name="Licensing" type="Autodesk.Connectivity.WebServices.LicensingSection, Autodesk.Connectivity.WebServices" /&amp;gt;
  &amp;lt;/configSections&amp;gt;
  &amp;lt;system.web&amp;gt;
    &amp;lt;compilation debug="true" targetFramework="4.5"/&amp;gt;
    &amp;lt;httpRuntime targetFramework="4.5"/&amp;gt;
    &amp;lt;identity impersonate="false"/&amp;gt;
    &amp;lt;customErrors mode="Off"/&amp;gt;
  &amp;lt;/system.web&amp;gt;
  &amp;lt;Licensing edition="professional"/&amp;gt;
&amp;lt;/configuration&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;7. Add User to the IIS application pool and opened a Vault Client with the same user cred's&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IIS.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/412582i70AF4306FADF45E7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IIS.PNG" alt="IIS.PNG" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;8. The vault user I use to try to login has Admin rights&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But when I try this I get this as exception message: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"de type-initialisatiefunctie voor autodesk.connectivity.webservicestools.webservicemanager heeft een uitzondering veroorzaakt."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;rough translation: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"the type of initialisation function for autodesk.connectivity.webservicestools.webservicemanager has caused an execption."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can someone help me with this?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks in advance&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Oct 2017 07:48:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-10-13T07:48:37Z</dc:date>
    <item>
      <title>Vault 2017 Web App Log In issue</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vault-2017-web-app-log-in-issue/m-p/7457406#M7044</link>
      <description>&lt;P&gt;&lt;FONT color="#333333"&gt;Hi All,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I'm having a bit of trouble logging in to the Vault from a web application.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I found a post on the forum explaining how to solve the problem but for some reason it's not working for me.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;EM&gt;&lt;STRONG&gt;Older post on the forum:&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;A href="https://forums.autodesk.com/t5/vault-forum/vault-2018-web-app-login-issue/td-p/7273764" target="_blank"&gt;Older Post Vault Web App Login Issue&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I will try to explain the steps I've followed to solve the problem, and what the issue is.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;1.&amp;nbsp; Started a new project in Visual Basic 2015 - ASP.NET Web Application (.NET Framework)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;2.&amp;nbsp; Created a new Web Form "Default.aspx" and made some controls (textbox and buttons to mimic the vault login form).&lt;BR /&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The code behind this form (just the login action): &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#808080"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT color="#333333"&gt;using System;
using VDF = Autodesk.DataManagement.Client.Framework;

namespace VaultWebApplication.web_forms
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        protected void submitEventMethod(object sender, EventArgs e)
        {
            try
            {
                VDF.Vault.Results.LogInResult results =
                VDF.Vault.Library.ConnectionManager.LogIn(serverTextBox.Text, vaultTextBox.Text, usernameTextBox.Text,
                passwordTextBox.Text, VDF.Vault.Currency.Connections.AuthenticationFlags.ReadOnly, null);

                resultTextBox.Text = results.Success.ToString();
            }
            catch (Exception ex) { resultTextBox.Text = "Error: " + ex.Message.ToString(); }
        }
    }
}&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;FONT color="#333333"&gt;&lt;STRONG&gt;3. I've made a Global.asax with code behind:&lt;/STRONG&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT color="#333333"&gt;using System;
using System.Globalization;
using System.Text.RegularExpressions;

using Autodesk.Connectivity.WebServices;
using Autodesk.Connectivity.WebServicesTools;
using System.Reflection;

namespace VaultWebApplication
{
    public class WebApiApplication : System.Web.HttpApplication
    {
        #region Assembly Resolver

        private static Regex assemblyRegEx;
        private static bool Is64Process = false;

        static WebApiApplication()
        {
            
            Is64Process = IntPtr.Size == 8;
            InitRegEx();
            AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
        }

        private static Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            if (IsXmlSerializer(args.Name)) { return null; }

            string[] fields = args.Name.Split(',');
            string assName = fields[0];

            if (assName.EndsWith(".resources", StringComparison.InvariantCultureIgnoreCase)) { return null; }

            Assembly ass = null;

            try
            {
                // First try to locate the assembly in the list of loaded assembly of the current AppDomain
                AssemblyName name = new AssemblyName(args.Name);
                Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
                foreach (Assembly assembly in assemblies)
                {
                    if (name.Name == assembly.GetName().Name) { return assembly; }
                }
                ass = Assembly.LoadFrom(args.Name);
            }
            catch
            {
                // Try to locate the assembly in the directory that contains the AddIn type.
                string basePath = System.IO.Path.GetDirectoryName(new Uri(MethodBase.GetCurrentMethod().DeclaringType.Assembly.CodeBase).LocalPath);
                string subFolder = Is64Process ? "x64" : "x86";
                string assemblyFileName = System.IO.Path.Combine(basePath, string.Format(CultureInfo.InvariantCulture, "{1}\\{0}.dll", new AssemblyName(args.Name).Name, subFolder));

                if(System.IO.File.Exists(assemblyFileName))
                {
                    ass = Assembly.LoadFile(assemblyFileName);
                }
                else
                {
                    string fout = new AssemblyName(args.Name).Name;
                }
            }
            finally { }
            return ass;
        }

        private static void InitRegEx()
        {
            string regex = @"^([\w\.]+)XmlSerializers";
            RegexOptions options = ((RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline) | RegexOptions.IgnoreCase);
            assemblyRegEx = new Regex(regex, options);
        }

        private static Boolean IsXmlSerializer(string name)
        {
            return assemblyRegEx.IsMatch(name);
        }

        #endregion

        protected void Application_Start(object sender, EventArgs e)
        {           
            //Active License
            WebServiceManager.AllowUI = false;
            LicenseManager.Instance.SetActive();
        }
    }
}&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;4. Made a "x64" and "x86" folder in the project and added the necessary .dll's in the folders&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5. Added the clmloader.dll to my debugfolder&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;6. In the web.config file&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  --&amp;gt;
&amp;lt;configuration&amp;gt;
  &amp;lt;configSections&amp;gt;
    &amp;lt;section name="Licensing" type="Autodesk.Connectivity.WebServices.LicensingSection, Autodesk.Connectivity.WebServices" /&amp;gt;
  &amp;lt;/configSections&amp;gt;
  &amp;lt;system.web&amp;gt;
    &amp;lt;compilation debug="true" targetFramework="4.5"/&amp;gt;
    &amp;lt;httpRuntime targetFramework="4.5"/&amp;gt;
    &amp;lt;identity impersonate="false"/&amp;gt;
    &amp;lt;customErrors mode="Off"/&amp;gt;
  &amp;lt;/system.web&amp;gt;
  &amp;lt;Licensing edition="professional"/&amp;gt;
&amp;lt;/configuration&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;7. Add User to the IIS application pool and opened a Vault Client with the same user cred's&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IIS.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/412582i70AF4306FADF45E7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IIS.PNG" alt="IIS.PNG" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;8. The vault user I use to try to login has Admin rights&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But when I try this I get this as exception message: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"de type-initialisatiefunctie voor autodesk.connectivity.webservicestools.webservicemanager heeft een uitzondering veroorzaakt."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;rough translation: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"the type of initialisation function for autodesk.connectivity.webservicestools.webservicemanager has caused an execption."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can someone help me with this?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks in advance&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 07:48:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vault-2017-web-app-log-in-issue/m-p/7457406#M7044</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-13T07:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Vault 2017 Web App Log In issue</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vault-2017-web-app-log-in-issue/m-p/7457497#M7045</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All of this is looking alright. The only major difference is that you are using the ConnectionManager (VDF) to create a connection, while I am using the WebServiceManager (lower level API). I've posted the sample application in the older post. Please let me know if it works for you.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 08:29:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vault-2017-web-app-log-in-issue/m-p/7457497#M7045</guid>
      <dc:creator>psaarloos</dc:creator>
      <dc:date>2017-10-13T08:29:10Z</dc:date>
    </item>
  </channel>
</rss>

