<?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 Qlik Sense .NET SDK connection with NTLM via proxy in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2536966#M108742</link>
    <description>&lt;P&gt;Hi team, I tried the sample code provided but still keep getting a 403 error when connecting to Qlik Sense.&lt;/P&gt;&lt;P&gt;I have tried with certificate, without certificate, with username/password and without them. I have Qlik Sense installed on my local and I can see the corresponding user in QMC. I've attached screenshot of the virtual proxy in case it's the virtual proxy configuration that is missing.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public List&amp;lt;IAppIdentifier&amp;gt; GetLocalQlikApps()
{
            var uri = new Uri("https://qlik-local.fraedom-dev.com:444");

            var location = Location.FromUri(uri);
            location.AsNtlmUserViaProxy(certificateValidation: false);

            using (var hub = location.Hub())
            {
                Console.WriteLine(hub.EngineVersion().ComponentVersion);
            }

            return null;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;403 error screenshot:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="403.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185194i1FD5AA587AA4BC4A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="403.png" alt="403.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Virtual Proxy screenshot:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="virutalProxy.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185193i1305F30B0A09CB2D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="virutalProxy.png" alt="virutalProxy.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For information the following CURL to the qrs works, so I would imagine the credentials would work.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl -v -L --ntlm --negotiate -u : --insecure https://qlik-local.fraedom-dev.com:444/qrs/app?xrfkey=0123456789abcdef --header "x-qlik-xrfkey: 0123456789abcdef" --header "User-Agent: Windows"
* Host qlik-local.fraedom-dev.com:444 was resolved.
* IPv6: (none)
* IPv4: 127.0.0.1
*   Trying 127.0.0.1:444...
* schannel: disabled automatic use of client certificate
* ALPN: curl offers http/1.1
* ALPN: server did not agree on a protocol. Uses default.
* Connected to qlik-local.fraedom-dev.com (127.0.0.1) port 444
* using HTTP/1.x
&amp;gt; GET /qrs/app?xrfkey=0123456789abcdef HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
&amp;lt; HTTP/1.1 302 Authenticate at this location
&amp;lt; Cache-Control: no-cache, no-store, must-revalidate
&amp;lt; Location: https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb
&amp;lt; Content-Length: 0
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
* setting size while ignoring
&amp;lt;
* Connection #0 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
* Recv failure: Connection was aborted
* schannel: recv returned CURLE_RECV_ERROR
* Connection died, retrying a fresh connect (retry count: 1)
* Request completely sent off
* shutting down connection #0
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Hostname qlik-local.fraedom-dev.com was found in DNS cache
*   Trying 127.0.0.1:444...
* ALPN: curl offers http/1.1
* ALPN: server did not agree on a protocol. Uses default.
* Connected to qlik-local.fraedom-dev.com (127.0.0.1) port 444
* using HTTP/1.x
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
&amp;lt; HTTP/1.1 401 Unauthorized
&amp;lt; Content-Length: 0
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; WWW-Authenticate: NTLM
&amp;lt; Date: Sun, 23 Nov 2025 22:11:18 GMT
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
* setting size while ignoring
&amp;lt;
* Connection #1 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
* Server auth using NTLM with user ''
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Authorization: NTLM TlRMTVNTUAABAAAAB7IIogQABAAyAAAACgAKACgAAAAKAF1YAAAAD1dXLUg5UVBKUjNWSVNB
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
&amp;lt; HTTP/1.1 401 Unauthorized
&amp;lt; Content-Length: 0
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; WWW-Authenticate: NTLM TlRMTVNTUAACAAAACAAIADgAAAAFwomi7VgHIUdOK/Q6CwEAAAAAAI4AjgBAAAAACgBdWAAAAA9WAEkAUwBBAAIACABWAEkAUwBBAAEAFABXAFcALQBIADkAUQBQAEoAUgAzAAQAEAB2AGkAcwBhAC4AYwBvAG0AAwAmAFcAVwAtAEgAOQBRAFAASgBSADMALgB2AGkAcwBhAC4AYwBvAG0ABQAYAHYAaQBzAGEAYwBvAHIAcAAuAG4AZQB0AAcACAD/zjcYxlzcAQAAAAA=
&amp;lt; Date: Sun, 23 Nov 2025 22:11:18 GMT
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
* setting size while ignoring
&amp;lt;
* Connection #1 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
* Server auth using NTLM with user ''
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Authorization: NTLM TlRMTVNTUAADAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAABcKIogoAXVgAAAAPAu+wCaXtovyy19fdTJHawQ==
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
* Request completely sent off
&amp;lt; HTTP/1.1 302 Found
&amp;lt; Cache-Control: no-cache, no-store, must-revalidate
&amp;lt; Transfer-Encoding: chunked
&amp;lt; Location: https://qlik-local.fraedom-dev.com:444/qrs/app?xrfkey=0123456789abcdef&amp;amp;qlikTicket=HzqwuQf1VWkIdL.T
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; Date: Sun, 23 Nov 2025 22:12:03 GMT
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
&amp;lt;
* Connection #1 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/qrs/app?xrfkey=0123456789abcdef&amp;amp;qlikTicket=HzqwuQf1VWkIdL.T'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
* Server auth using NTLM with user ''
&amp;gt; GET /qrs/app?xrfkey=0123456789abcdef&amp;amp;qlikTicket=HzqwuQf1VWkIdL.T HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
* Request completely sent off
&amp;lt; HTTP/1.1 200 OK
&amp;lt; Set-Cookie: X-Qlik-Session=85508311-952a-4cab-9951-a0cc951e5275; Path=/; HttpOnly
&amp;lt; Cache-Control: private, must-revalidate, max-age=0
&amp;lt; Transfer-Encoding: chunked
&amp;lt; Content-Type: application/json; charset=utf-8
&amp;lt; Expires: Sun, 23 Nov 2025 22:12:03 GMT
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; Date: Sun, 23 Nov 2025 22:12:03 GMT
&amp;lt; Access-Control-Allow-Origin: *
&amp;lt;
[{"id":"cf506d27-5883-4fcd-92ef-6a23bacb369c","name":"CI_department_spend_6314bcf7-af8c-e911-8481-00155d67f500","appId":"","publishTime":"2023-12-19T03:29:36.922Z","published":true,"stream":{"id":"b4f08930-8be1-4c6f-adf1-cee895e0a7ac","name":"Insights User Apps","privileges":null}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 23 Nov 2025 22:16:43 GMT</pubDate>
    <dc:creator>vlian</dc:creator>
    <dc:date>2025-11-23T22:16:43Z</dc:date>
    <item>
      <title>Qlik Sense .NET SDK connection with NTLM via proxy</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2536966#M108742</link>
      <description>&lt;P&gt;Hi team, I tried the sample code provided but still keep getting a 403 error when connecting to Qlik Sense.&lt;/P&gt;&lt;P&gt;I have tried with certificate, without certificate, with username/password and without them. I have Qlik Sense installed on my local and I can see the corresponding user in QMC. I've attached screenshot of the virtual proxy in case it's the virtual proxy configuration that is missing.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public List&amp;lt;IAppIdentifier&amp;gt; GetLocalQlikApps()
{
            var uri = new Uri("https://qlik-local.fraedom-dev.com:444");

            var location = Location.FromUri(uri);
            location.AsNtlmUserViaProxy(certificateValidation: false);

            using (var hub = location.Hub())
            {
                Console.WriteLine(hub.EngineVersion().ComponentVersion);
            }

            return null;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;403 error screenshot:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="403.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185194i1FD5AA587AA4BC4A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="403.png" alt="403.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Virtual Proxy screenshot:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="virutalProxy.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185193i1305F30B0A09CB2D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="virutalProxy.png" alt="virutalProxy.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For information the following CURL to the qrs works, so I would imagine the credentials would work.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl -v -L --ntlm --negotiate -u : --insecure https://qlik-local.fraedom-dev.com:444/qrs/app?xrfkey=0123456789abcdef --header "x-qlik-xrfkey: 0123456789abcdef" --header "User-Agent: Windows"
* Host qlik-local.fraedom-dev.com:444 was resolved.
* IPv6: (none)
* IPv4: 127.0.0.1
*   Trying 127.0.0.1:444...
* schannel: disabled automatic use of client certificate
* ALPN: curl offers http/1.1
* ALPN: server did not agree on a protocol. Uses default.
* Connected to qlik-local.fraedom-dev.com (127.0.0.1) port 444
* using HTTP/1.x
&amp;gt; GET /qrs/app?xrfkey=0123456789abcdef HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
&amp;lt; HTTP/1.1 302 Authenticate at this location
&amp;lt; Cache-Control: no-cache, no-store, must-revalidate
&amp;lt; Location: https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb
&amp;lt; Content-Length: 0
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
* setting size while ignoring
&amp;lt;
* Connection #0 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
* Recv failure: Connection was aborted
* schannel: recv returned CURLE_RECV_ERROR
* Connection died, retrying a fresh connect (retry count: 1)
* Request completely sent off
* shutting down connection #0
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Hostname qlik-local.fraedom-dev.com was found in DNS cache
*   Trying 127.0.0.1:444...
* ALPN: curl offers http/1.1
* ALPN: server did not agree on a protocol. Uses default.
* Connected to qlik-local.fraedom-dev.com (127.0.0.1) port 444
* using HTTP/1.x
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
&amp;lt; HTTP/1.1 401 Unauthorized
&amp;lt; Content-Length: 0
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; WWW-Authenticate: NTLM
&amp;lt; Date: Sun, 23 Nov 2025 22:11:18 GMT
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
* setting size while ignoring
&amp;lt;
* Connection #1 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
* Server auth using NTLM with user ''
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Authorization: NTLM TlRMTVNTUAABAAAAB7IIogQABAAyAAAACgAKACgAAAAKAF1YAAAAD1dXLUg5UVBKUjNWSVNB
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
&amp;lt; HTTP/1.1 401 Unauthorized
&amp;lt; Content-Length: 0
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; WWW-Authenticate: NTLM TlRMTVNTUAACAAAACAAIADgAAAAFwomi7VgHIUdOK/Q6CwEAAAAAAI4AjgBAAAAACgBdWAAAAA9WAEkAUwBBAAIACABWAEkAUwBBAAEAFABXAFcALQBIADkAUQBQAEoAUgAzAAQAEAB2AGkAcwBhAC4AYwBvAG0AAwAmAFcAVwAtAEgAOQBRAFAASgBSADMALgB2AGkAcwBhAC4AYwBvAG0ABQAYAHYAaQBzAGEAYwBvAHIAcAAuAG4AZQB0AAcACAD/zjcYxlzcAQAAAAA=
&amp;lt; Date: Sun, 23 Nov 2025 22:11:18 GMT
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
* setting size while ignoring
&amp;lt;
* Connection #1 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
* Server auth using NTLM with user ''
&amp;gt; GET /internal_windows_authentication/?targetId=f274fac0-2157-45cc-a055-24ef4c0d49eb HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Authorization: NTLM TlRMTVNTUAADAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAAAAAAAFgAAAAAAAAAWAAAAAAAAABYAAAABcKIogoAXVgAAAAPAu+wCaXtovyy19fdTJHawQ==
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
* Request completely sent off
&amp;lt; HTTP/1.1 302 Found
&amp;lt; Cache-Control: no-cache, no-store, must-revalidate
&amp;lt; Transfer-Encoding: chunked
&amp;lt; Location: https://qlik-local.fraedom-dev.com:444/qrs/app?xrfkey=0123456789abcdef&amp;amp;qlikTicket=HzqwuQf1VWkIdL.T
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; Date: Sun, 23 Nov 2025 22:12:03 GMT
&amp;lt; Access-Control-Allow-Origin: *
* Ignoring the response-body
&amp;lt;
* Connection #1 to host qlik-local.fraedom-dev.com left intact
* Issue another request to this URL: 'https://qlik-local.fraedom-dev.com:444/qrs/app?xrfkey=0123456789abcdef&amp;amp;qlikTicket=HzqwuQf1VWkIdL.T'
* Re-using existing https: connection with host qlik-local.fraedom-dev.com
* Server auth using NTLM with user ''
&amp;gt; GET /qrs/app?xrfkey=0123456789abcdef&amp;amp;qlikTicket=HzqwuQf1VWkIdL.T HTTP/1.1
&amp;gt; Host: qlik-local.fraedom-dev.com:444
&amp;gt; Accept: */*
&amp;gt; x-qlik-xrfkey: 0123456789abcdef
&amp;gt; User-Agent: Windows
&amp;gt;
* Request completely sent off
&amp;lt; HTTP/1.1 200 OK
&amp;lt; Set-Cookie: X-Qlik-Session=85508311-952a-4cab-9951-a0cc951e5275; Path=/; HttpOnly
&amp;lt; Cache-Control: private, must-revalidate, max-age=0
&amp;lt; Transfer-Encoding: chunked
&amp;lt; Content-Type: application/json; charset=utf-8
&amp;lt; Expires: Sun, 23 Nov 2025 22:12:03 GMT
&amp;lt; Server: Microsoft-HTTPAPI/2.0
&amp;lt; Date: Sun, 23 Nov 2025 22:12:03 GMT
&amp;lt; Access-Control-Allow-Origin: *
&amp;lt;
[{"id":"cf506d27-5883-4fcd-92ef-6a23bacb369c","name":"CI_department_spend_6314bcf7-af8c-e911-8481-00155d67f500","appId":"","publishTime":"2023-12-19T03:29:36.922Z","published":true,"stream":{"id":"b4f08930-8be1-4c6f-adf1-cee895e0a7ac","name":"Insights User Apps","privileges":null}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Nov 2025 22:16:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2536966#M108742</guid>
      <dc:creator>vlian</dc:creator>
      <dc:date>2025-11-23T22:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense .NET SDK connection with NTLM via proxy</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2537462#M108827</link>
      <description>&lt;P&gt;I have some further information to add now, when looking into the logs, I found the proxy audit logs always shows this when a request is sent in. Suggesting that it's the cross-site websocket hijacking module that's denying the request. Does anyone know how to configure QMC on my local to allow requests sent by the SDK (I've attached mine in the screenshot)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;1847	20251128T124017.450+1300	ERROR	WW-H9QPJR3	Audit.Proxy.Proxy.Core.RequestHandler	100	cad3636e-8921-4da8-a51b-56b472e0094d	WW-H9QPJR3\Qlik_svc	Cross-Site Websocket Hijacking attack prevention check failed. Possible Cross-Site Websocket Hijacking attack(CSWSH) discovered. ConnectionId: 49dc9a61-9022-457a-99cb-24de01ab3bc6	0	49dc9a61-9022-457a-99cb-24de01ab3bc6				::ffff:127.0.0.1			{}	ac2665dbf929f930699829c11d64d21c988cf28a
1848	20251128T124017.728+1300	ERROR	WW-H9QPJR3	Audit.Proxy.Proxy.Core.RequestHandler	268	7b528e55-207f-45b5-8436-ae65079855e8	WW-H9QPJR3\Qlik_svc	Cross-Site Websocket Hijacking attack prevention check failed. Possible Cross-Site Websocket Hijacking attack(CSWSH) discovered. ConnectionId: 3b463ddf-c919-4db2-b490-4222250648e7	0	3b463ddf-c919-4db2-b490-4222250648e7				::ffff:127.0.0.1			{}	b7f3f99c530fe1bba09f21f36553b5ab5691ddf6&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="virtualProxy_new.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185294iCA570040727C7458/image-size/large?v=v2&amp;amp;px=999" role="button" title="virtualProxy_new.png" alt="virtualProxy_new.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 00:03:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2537462#M108827</guid>
      <dc:creator>vlian</dc:creator>
      <dc:date>2025-11-28T00:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense .NET SDK connection with NTLM via proxy</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2537747#M108862</link>
      <description>&lt;P&gt;After contact qlik support, I've found the issue to be that the .NET SDK version needs to be upgraded. The old version 16.0.2 no longer works after a breaking change for how to connect to WebSocket connections in Qlik Sense Enterprise May 2024. After upgrading the SDK into 16.11, the connection worked again.&lt;/P&gt;&lt;P&gt;Reference documents:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cross-Site Websocket Hijacking attack prevention check failed. Possible Cross-Site Websocket Hijacking attack(CSWSH) discovered.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/t5/Support-Updates/Upgrade-advisory-for-Qlik-Sense-on-premise-November-2024/bc-p/2505282" target="_blank"&gt;https://community.qlik.com/t5/Support-Updates/Upgrade-advisory-for-Qlik-Sense-on-premise-November-2024/bc-p/2505282&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-Extended-WebSocket-CSRF/ta-p/2509211" target="_blank"&gt;https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-Enterprise-on-Windows-Extended-WebSocket-CSRF/ta-p/2509211&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 23:12:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-NET-SDK-connection-with-NTLM-via-proxy/m-p/2537747#M108862</guid>
      <dc:creator>vlian</dc:creator>
      <dc:date>2025-12-01T23:12:08Z</dc:date>
    </item>
  </channel>
</rss>

