<?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 Error while trying to Login to Vault through API in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6495402#M8280</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to using the Vault API. I have been developing a lot of iLogic code over the last few years and things have evolved to the point where I want to have some Vault interaction as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to recreate a demo that Doug Redmond did where you log into Vault with the VDF, and display the folders from the root folder in Vault. I have recreated the code and I am getting an error when I try to get logged into Vault. I am running Vault Pro 2017.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code where I pop up the login screen:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;using ACW = Autodesk.Connectivity.WebServices;
using Framework = Autodesk.DataManagement.Client.Framework;
using Vault = Autodesk.DataManagement.Client.Framework.Vault;
using Autodesk.DataManagement.Client.Framework.Vault.Currency.Connections;

namespace VaultExperiments
{
    static class Program
    {
        /// &amp;lt;summary&amp;gt;
        /// The main entry point for the application.
        /// &amp;lt;/summary&amp;gt;
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Connection conn = Framework.Vault.Forms.Library.Login(null);

            Application.Run(new frmVault(conn));
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So when I fire up the application the Vault login screen comes up like it should. But when I try to log in it just sits there and tries to connect until I cancel it. If I try to browse the "Vaults" on the server I get the following error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Vault Error.jpg" style="width: 555px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/262734iEB61EBFA9A1D7B81/image-size/large?v=v2&amp;amp;px=999" role="button" title="Vault Error.jpg" alt="Vault Error.jpg" /&gt;&lt;/span&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;&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;&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;&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;&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;&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;&lt;P&gt;I did find a knowledge base article about this error and it said to delete a restrictions folder in the programdata folder. I do not have a restrictions folder there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working over a VPN which is connected. If I try to just fire up Vault and login, everything works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Aug 2016 20:41:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-08-11T20:41:24Z</dc:date>
    <item>
      <title>Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6495402#M8280</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to using the Vault API. I have been developing a lot of iLogic code over the last few years and things have evolved to the point where I want to have some Vault interaction as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to recreate a demo that Doug Redmond did where you log into Vault with the VDF, and display the folders from the root folder in Vault. I have recreated the code and I am getting an error when I try to get logged into Vault. I am running Vault Pro 2017.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code where I pop up the login screen:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;using ACW = Autodesk.Connectivity.WebServices;
using Framework = Autodesk.DataManagement.Client.Framework;
using Vault = Autodesk.DataManagement.Client.Framework.Vault;
using Autodesk.DataManagement.Client.Framework.Vault.Currency.Connections;

namespace VaultExperiments
{
    static class Program
    {
        /// &amp;lt;summary&amp;gt;
        /// The main entry point for the application.
        /// &amp;lt;/summary&amp;gt;
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Connection conn = Framework.Vault.Forms.Library.Login(null);

            Application.Run(new frmVault(conn));
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So when I fire up the application the Vault login screen comes up like it should. But when I try to log in it just sits there and tries to connect until I cancel it. If I try to browse the "Vaults" on the server I get the following error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Vault Error.jpg" style="width: 555px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/262734iEB61EBFA9A1D7B81/image-size/large?v=v2&amp;amp;px=999" role="button" title="Vault Error.jpg" alt="Vault Error.jpg" /&gt;&lt;/span&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;&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;&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;&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;&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;&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;&lt;P&gt;I did find a knowledge base article about this error and it said to delete a restrictions folder in the programdata folder. I do not have a restrictions folder there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working over a VPN which is connected. If I try to just fire up Vault and login, everything works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 20:41:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6495402#M8280</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-11T20:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500090#M8281</link>
      <description>&lt;P&gt;Hi Chad,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code looks fine, but Vault 2017 is using a new licensing mechanism called Clic. You can read more about this in the Vault SDK help. Did you install Vault SDK? There are some samples in there as well. The VaultBrowserSample might get you started.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pim Saarloos&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2016 09:34:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500090#M8281</guid>
      <dc:creator>psaarloos</dc:creator>
      <dc:date>2016-08-15T09:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500533#M8282</link>
      <description>&lt;P&gt;Pim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response. I have indeed installed the SDK, and have been using the Browser Sample as a reference. I have been trying some other things to try and help figure out what is causing this issue. I replaced the 2017 reference dll files. The Autodesk VDF dlls, with the 2016 dll files. I can get it to work when I use those. That's still then logging into the 2017 Vault, so I don't see why the license authentication system would be a problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run with the 2017 dll files, I get the login box to pop up. And when I try to browse the "Vaults" on the server, I get the error. I would think if it was a license issue, it wouldn't have allowed me to get to the login dialog at all, or would throw the license error after I try to log in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried to use the API to login into Vault directly without bringing up the dialog box.&amp;nbsp;This works just fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2016 13:44:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500533#M8282</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-15T13:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500640#M8283</link>
      <description>&lt;P&gt;Hi Chad,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did a quick test and had the same exception popping up. Adding a reference to 'Autodesk.Connectivity.WebServices.WCF' fixed the issue.. Don't ask me why though.. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pim Saarloos&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2016 14:21:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500640#M8283</guid>
      <dc:creator>psaarloos</dc:creator>
      <dc:date>2016-08-15T14:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500678#M8284</link>
      <description>&lt;P&gt;Pim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help, I do appreciate it. You did guess my next question, but since you asked me not to ask it, I won't....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2016 14:31:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500678#M8284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-15T14:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500764#M8285</link>
      <description>&lt;P&gt;Hi Chad,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the kudo's :). It's probably because you referenced the Vault dll's from the Vault SDK folder instead of copying the dll's manualy to the ouput folder of your application. If you remove the reference to Autodesk.Connectivity.WebServices.WCF and make sure the Autodesk.Connectivity.WebServices.WCF, Autodesk.Connectivity.WebServices.Interop and clmloader are located in the output folder it should also work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pim Saarloos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2016 14:54:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500764#M8285</guid>
      <dc:creator>psaarloos</dc:creator>
      <dc:date>2016-08-15T14:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500803#M8286</link>
      <description>&lt;P&gt;Okay, thanks again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2016 15:10:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/6500803#M8286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-15T15:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/7706844#M8287</link>
      <description>&lt;P&gt;I would like to automatically log into Vault using Windows Authentication for the user.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This worked like a charm in Vault Pro 2016:&lt;/P&gt;
&lt;PRE&gt;VDF.Vault.Results.LogInResult VaultLoginResults = VDF.Vault.Library.ConnectionManager.LogIn("cm-vault-wpg", "Vault", "", "", VDF.Vault.Currency.Connections.AuthenticationFlags.WindowsAuthentication, null);


VDF.Vault.Currency.Connections.Connection connection = VaultLoginResults.Connection;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But after upgrading to Vault Pro 2018, and redirecting all the .dll&amp;nbsp;references to 2018, my program returns an error that my connection login result is null:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="connection was null.PNG" style="width: 543px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/452569iCB9564998A25ED26/image-size/large?v=v2&amp;amp;px=999" role="button" title="connection was null.PNG" alt="connection was null.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What else am I missing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx!&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;
&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>Sun, 21 Jan 2018 00:27:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/7706844#M8287</guid>
      <dc:creator>jlane</dc:creator>
      <dc:date>2018-01-21T00:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/7706853#M8288</link>
      <description>&lt;P&gt;ah, I read the solution&amp;nbsp;more carefully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I manually copied the &lt;STRONG&gt;clmloader.dll&lt;/STRONG&gt; into the build folder, and it worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very happy to be up &amp;amp; running, but&amp;nbsp;curious why this had to be done manually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Shouldn't this be automatically copied?&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2018 00:45:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/7706853#M8288</guid>
      <dc:creator>jlane</dc:creator>
      <dc:date>2018-01-21T00:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/9175908#M8289</link>
      <description>&lt;P&gt;I realize this is an old question, but just in case anyone else is wondering the same thing as&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/847238"&gt;@jlane&lt;/a&gt;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/75495"&gt;@psaarloos&lt;/a&gt;&amp;nbsp;mentioned you don't need to add a reference to the Dlls in your project, but you do need to make sure they are in your project and copied to the output folder during a build. In order to make sure the Dlls are copied to the right place even when changing the build from Debug to Released etc.. copy the files to the top level of your project. Putting them in a sub folder of the project will cause them to be copied to that directory under the root output directly and they will not work. Once you've added the files you need to select them all then change the "Copy to Output Directory" option in the file properties to either "Copy Always" or "Copy if Newer".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are other ways to do this using the Post Build Events and XCOPY, but this to me is the easiest method.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Dec 2019 19:20:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/9175908#M8289</guid>
      <dc:creator>Boorda</dc:creator>
      <dc:date>2019-12-01T19:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error while trying to Login to Vault through API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/10694861#M8290</link>
      <description>&lt;P&gt;Still facing same issue unable to connect it!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Oct 2021 07:21:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/error-while-trying-to-login-to-vault-through-api/m-p/10694861#M8290</guid>
      <dc:creator>siddhartha.sudhir</dc:creator>
      <dc:date>2021-10-18T07:21:40Z</dc:date>
    </item>
  </channel>
</rss>

