<?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 Re: .NET SDK 15.3.3 leads to new exception in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788751#M13983</link>
    <description>&lt;P&gt;Downloaded 15.3.4 and it works again - thanks.&lt;/P&gt;</description>
    <pubDate>Fri, 05 Mar 2021 16:01:06 GMT</pubDate>
    <dc:creator>berndpodhradsky</dc:creator>
    <dc:date>2021-03-05T16:01:06Z</dc:date>
    <item>
      <title>.NET SDK 15.3.3 leads to new exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788494#M13970</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;When upgrading from 15.3.0 to 15.3.3 of the .NET SDK when connecting to a Qlik Sense Server (on premise) using&amp;nbsp;&lt;EM&gt;AsNtlmUserViaProxy&lt;/EM&gt;. It used to work in previous versions without any issue.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Unable to retrieve ticket as authentication information contained no login URI.&lt;BR /&gt;&lt;/STRONG&gt;&lt;EM&gt;AuthenticationException: Unable to retrieve ticket as authentication information contained no login URI.&lt;BR /&gt;at Qlik.Engine.Communication.QlikConnection.AwaitResponseTask[T](T task, String methodName, CancellationToken cancellationToken)&lt;BR /&gt;at Qlik.Engine.Communication.QlikConnection.AwaitResponse(Task task, String methodName, CancellationToken cancellationToken)&lt;BR /&gt;at Qlik.Engine.Communication.QlikConnection.Ping()&lt;BR /&gt;at Qlik.Sense.JsonRpc.GenericLocation.DisposeOnError(IDisposable o, Action f)&lt;BR /&gt;at Qlik.Engine.LocationExtensions.Hub(ILocation location, ISession session)&lt;BR /&gt;at Qlik.Engine.LocationExtensions.GetAppIdentifiers(ILocation location)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is that a bug in the new version or do we have to change something on our end?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kind Regards,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Bernd&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 18:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788494#M13970</guid>
      <dc:creator>berndpodhradsky</dc:creator>
      <dc:date>2021-03-04T18:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: .NET SDK 15.3.3 leads to new exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788612#M13977</link>
      <description>&lt;P&gt;That was an accidental effect of fixing an issue in the handling of anonymous accesses. .NET SDK v15.3.4 has been uploaded that fixes this issue.&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 09:03:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788612#M13977</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2021-03-05T09:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: .NET SDK 15.3.3 leads to new exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788751#M13983</link>
      <description>&lt;P&gt;Downloaded 15.3.4 and it works again - thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 16:01:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1788751#M13983</guid>
      <dc:creator>berndpodhradsky</dc:creator>
      <dc:date>2021-03-05T16:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: .NET SDK 15.3.3 leads to new exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1892686#M16283</link>
      <description>&lt;P&gt;Hi Yko,&lt;/P&gt;
&lt;P&gt;I'm having the same issue using the SDK version 15.6.2.&lt;BR /&gt;This is one sample of the code:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;var location = Location.FromUri(originServer.URL);
location.VirtualProxyPath = originServer.VirtualProxy;
var securedPassword = Security.ConvertStringToSecureString(GetDecryptedPassword(originServer.Password));
location.AsNtlmUserViaProxy(loginCredentials: new NetworkCredential(originServer.User, securedPassword, originServer.Domain), certificateValidation: false);

// Test code
try {
    using var hub = location.Hub();
    hub.EngineVersion();
}
catch (Exception ex) {
    Helpers.LogWebError("IPDF", "QlikWrapper", ex);
}&lt;/LI-CODE&gt;
&lt;P&gt;The error happens on&amp;nbsp;&lt;STRONG&gt;using var hub = location.Hub()&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;Can you please help me on this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Mark Costa&lt;/P&gt;</description>
      <pubDate>Mon, 14 Feb 2022 17:11:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1892686#M16283</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2022-02-14T17:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: .NET SDK 15.3.3 leads to new exception</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1892708#M16284</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22035"&gt;@marksouzacosta&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Yko,&lt;/P&gt;
&lt;P&gt;I'm having the same issue using the SDK version 15.6.2.&lt;BR /&gt;This is one sample of the code:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;var location = Location.FromUri(originServer.URL);
location.VirtualProxyPath = originServer.VirtualProxy;
var securedPassword = Security.ConvertStringToSecureString(GetDecryptedPassword(originServer.Password));
location.AsNtlmUserViaProxy(loginCredentials: new NetworkCredential(originServer.User, securedPassword, originServer.Domain), certificateValidation: false);

// Test code
try {
    using var hub = location.Hub();
    hub.EngineVersion();
}
catch (Exception ex) {
    Helpers.LogWebError("IPDF", "QlikWrapper", ex);
}&lt;/LI-CODE&gt;
&lt;P&gt;The error happens on&amp;nbsp;&lt;STRONG&gt;using var hub = location.Hub()&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;Can you please help me on this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Mark Costa&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I tried without the Virtual Proxy and it is working again. Maybe something have changed on our server side.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Feb 2022 18:31:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/NET-SDK-15-3-3-leads-to-new-exception/m-p/1892708#M16284</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2022-02-14T18:31:24Z</dc:date>
    </item>
  </channel>
</rss>

