<?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: Custom login page can skip Windows authentication popup in every browser but Firefox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316990#M1320634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ever make any more progress on this?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Could you possibly share your whole ASP.NET solution instead of just that one code snippet?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jul 2018 16:52:45 GMT</pubDate>
    <dc:creator>mmarchese</dc:creator>
    <dc:date>2018-07-09T16:52:45Z</dc:date>
    <item>
      <title>Custom login page can skip Windows authentication popup in every browser but Firefox</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316988#M1320629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H2&gt;Platform&lt;/H2&gt;&lt;P&gt;I installed QlikView 11 web application on IIS 6.1.&lt;/P&gt;&lt;H2&gt;Goal&lt;/H2&gt;&lt;P&gt;I need to authenticate users as Windows domain users, but I want to avoid them to insert username and password in the browser popup. I also need QV web application to be available to them also outside of the intranet. Users login to our web application with credentials that are the same as windows domain credentials in the intranet. Then with a link they open QV and I don't want them to retype their credentials.&lt;/P&gt;&lt;H2&gt;Current implementation&lt;/H2&gt;&lt;P&gt;So I found this way:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;in IIS for each application in qlikview site, I set as authentication both Anonymous Authentication e Windows Authentication&lt;/LI&gt;&lt;LI&gt;in QlikView Management Console &amp;gt; System &amp;gt; Setup &amp;gt; QlikView Web Servers &amp;gt; QVWS@SERVERNAME &amp;gt; Authentication&lt;UL&gt;&lt;LI&gt;Authentication = Always&lt;/LI&gt;&lt;LI&gt;Type = Ntlm&lt;/LI&gt;&lt;LI&gt;Login Address = Custom login page /qlikview/login3.aspx&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;I created the file&lt;EM&gt; C:\Program Files\QlikView\Web\login3.aspx&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;&amp;lt;%@ Page Language="C#" %&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; String username = Request["username"];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; String password = Request["password"];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;html xmlns="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.w3.org/1999/xhtml" target="_blank"&gt;http://www.w3.org/1999/xhtml&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;QlikView - login&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type="text/javascript" src="js/jquery-1.4.4.min.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type="text/javascript" src="js/login.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TryLogin(null, '&amp;lt;%=HttpUtility.JavaScriptStringEncode(username) %&amp;gt;', '&amp;lt;%=HttpUtility.JavaScriptStringEncode(password) %&amp;gt;', function (ok) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (ok) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GoBack(_try);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (_try != null) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GoBack();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert('Login Failed');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/PRE&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;The link we use to open QV is &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://SERVER_IP/login3.aspx?username=UUU&amp;amp;password=PPP;" target="_blank"&gt;http://SERVER_IP/login3.aspx?username=UUU&amp;amp;password=PPP;&lt;/A&gt;&lt;SPAN&gt; I know it's not secure, but I start making it work and then I'll enhance secury.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Results and problems&lt;/H2&gt;&lt;P&gt;Using IE or Chrome, it logs in automatically using credentials we passed.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But when I use Firefox it prompts the user with the Windows authentication popup&lt;/STRONG&gt;, before letting JavaScript to perform the login.&lt;/P&gt;&lt;H2&gt;Attempts&lt;/H2&gt;&lt;P&gt;I tried to solve the issue by &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;adding SERVER_IP to Firefox &lt;EM&gt;network.automatic-ntlm-auth.trusted-uris&lt;/EM&gt; and &lt;EM&gt;network.negotiate-auth.trusted-uris&lt;/EM&gt; properties&amp;nbsp; (in about:config page)&lt;/LI&gt;&lt;LI&gt;removing &amp;lt;authentication mode="Windows" /&amp;gt; tag or setting mode to "None", in the &lt;EM&gt;web.config &lt;/EM&gt;file of each QV web application&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;but nothing worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope someone could help me. Many thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316988#M1320629</guid>
      <dc:creator>bluishjoe</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Custom login page can skip Windows authentication popup in every browser but Firefox</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316989#M1320632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to pass the windows credentials to a sharepoint site and fetch the data from sharepoint list into qlikview. Any help please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;qlikviewforum&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2012 11:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316989#M1320632</guid>
      <dc:creator>qlikviewforum</dc:creator>
      <dc:date>2012-09-03T11:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Custom login page can skip Windows authentication popup in every browser but Firefox</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316990#M1320634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ever make any more progress on this?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Could you possibly share your whole ASP.NET solution instead of just that one code snippet?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2018 16:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316990#M1320634</guid>
      <dc:creator>mmarchese</dc:creator>
      <dc:date>2018-07-09T16:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Custom login page can skip Windows authentication popup in every browser but Firefox</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316991#M1320635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, unfortunately I never solved this issue.&lt;/P&gt;&lt;P&gt;If I remember well, there's no other code than the one I shared.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 06:41:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316991#M1320635</guid>
      <dc:creator>bluishjoe</dc:creator>
      <dc:date>2018-07-10T06:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Custom login page can skip Windows authentication popup in every browser but Firefox</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316992#M1320636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot test now but from memory, you have to change some settings in the About:Config of Firefox to enable Windows integrated authentication.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Okay, I just found this, I don't know how usable is for the latest versions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://specopssoft.com/blog/configuring-chrome-and-firefox-for-windows-integrated-authentication/" title="https://specopssoft.com/blog/configuring-chrome-and-firefox-for-windows-integrated-authentication/"&gt;https://specopssoft.com/blog/configuring-chrome-and-firefox-for-windows-integrated-authentication/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 06:55:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-login-page-can-skip-Windows-authentication-popup-in-every/m-p/316992#M1320636</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-07-10T06:55:21Z</dc:date>
    </item>
  </channel>
</rss>

