<?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 SSO for Ajax accesspoint using Small Business Edition Solution in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SSO-for-Ajax-accesspoint-using-Small-Business-Edition-Solution/m-p/1089016#M1232979</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hello everyone this is my first entry in Qlik community. I've spent a few days looking around for a solution to implement a Single Sign On solution in my qlikview server and never found what I needed. After some tinkering me and a fellow engineer found a solution to our particular problem and decided to share it. Any comments on this solution are appreciated!&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Inicial scenario&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Licence type&lt;/STRONG&gt;: Small Business Edition&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Web-server&lt;/STRONG&gt;: IIS&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Authentication&lt;/STRONG&gt;: NTLM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Authorization&lt;/STRONG&gt;: NTFS (Forced by licence)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Login Address&lt;/STRONG&gt;: Default login page (browser authentication)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Requirements&lt;/STRONG&gt;: We needed to implement qlikview authentication in a webportal that contains an application and embed an &lt;STRONG&gt;iframe&lt;/STRONG&gt; with a qlikview document, this authentication needs to be as invisible as possible so that the user doesnt even know he's using two different applications.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Solution:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Changed Login Address type to Custom login page&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;The reason for this is that we will need to be able to post the user credentials via ajax. Maybe other workarounds exist but this was what we were able to implement.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;IIS Reverse proxy using ARR and URL rewrite&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;We have both websites in the same IIS, o we simply &lt;STRONG&gt;enabled ARR proxy&lt;/STRONG&gt; and in &lt;STRONG&gt;URL rewrite&lt;/STRONG&gt; we created a &lt;STRONG&gt;Reverse Proxy&lt;/STRONG&gt; rule with "&lt;STRONG&gt;QvAjaxZfc(.*)|qlikview(.*)&lt;/STRONG&gt;" as a pattern to &lt;STRONG&gt;rewrite&lt;/STRONG&gt;&lt;SPAN&gt; URL as &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://qlikviewserver/" rel="nofollow" target="_blank"&gt;https://qlikviewserver/&lt;/A&gt;&lt;SPAN&gt;{R:0}&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;This allowed us to access qlikview resources from our webportal like this : &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://webportal/qlikview/FormLogin.htm" rel="nofollow" target="_blank"&gt;https://webportal/qlikview/FormLogin.htm&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;There might be cross origin problems associated so if it doesnt work, that might be something that needs to be handled.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Automatic login&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;As required we want to login in our webportal, and at the same time login in qlikview. Our solution was to use &lt;STRONG&gt;JQUERY&lt;/STRONG&gt; to send a &lt;STRONG&gt;formData&lt;/STRONG&gt; login just like you would send over the &lt;STRONG&gt;FormLogin.htm&lt;/STRONG&gt; page.&lt;/LI&gt;&lt;LI&gt;On click we retrieve the user and password from the webportal form and procede to &lt;STRONG&gt;Post&lt;/STRONG&gt; the data via &lt;STRONG&gt;ajax JQUERY&lt;/STRONG&gt;, with a &lt;STRONG&gt;modified url&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;This method provided us with an &lt;STRONG&gt;invisible login&lt;/STRONG&gt; since there is &lt;STRONG&gt;no redirect to accesspoint&lt;/STRONG&gt; and &lt;STRONG&gt;no call back&lt;/STRONG&gt; in case of failed authentication.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;OL&gt;&lt;LI&gt;$.ajax({&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; type: "POST",&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; url: "/QvAJAXZfc/Authenticate.aspx",&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; data: {&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; username: UserForm.value,&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; password: PasswordForm.value&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; },&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; contentType: "application/x-www-form-urlencoded",&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; success: function () {&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; alert('form was submitted');&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; }&lt;/LI&gt;&lt;LI&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; });&lt;/LI&gt;&lt;/OL&gt;&lt;LI&gt;&lt;STRONG&gt;iFrame&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Just add an &lt;STRONG&gt;iFrame&lt;/STRONG&gt; to your website, with the link you want, in our case we added a link directly to the document we want.&lt;UL&gt;&lt;LI&gt;&lt;A class="jive-link-external-small" href="https://webportal/qlikview/...documentxxx/" rel="nofollow" target="_blank"&gt;https://webportal/qlikview/...documentxxx/&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;It's important to use a link with the &lt;STRONG&gt;webportal domain&lt;/STRONG&gt; since the &lt;STRONG&gt;cookie&lt;/STRONG&gt;&lt;SPAN&gt; provided by the qlikview server is sent to this domain and not the usual &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://qlikviewserver/" rel="nofollow" target="_blank"&gt;https://qlikviewserver/&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;That's it!!! This solution might not work for every scenario but since I never found a solution for SSO with a small business edition licence i thought I could share some knowledge.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Any comments, tips or criticism is always welcome!&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I'll try to create a step by step tutorial when I have time if anyone has problems following this.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>SSO for Ajax accesspoint using Small Business Edition Solution</title>
      <link>https://community.qlik.com/t5/QlikView/SSO-for-Ajax-accesspoint-using-Small-Business-Edition-Solution/m-p/1089016#M1232979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hello everyone this is my first entry in Qlik community. I've spent a few days looking around for a solution to implement a Single Sign On solution in my qlikview server and never found what I needed. After some tinkering me and a fellow engineer found a solution to our particular problem and decided to share it. Any comments on this solution are appreciated!&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Inicial scenario&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Licence type&lt;/STRONG&gt;: Small Business Edition&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Web-server&lt;/STRONG&gt;: IIS&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Authentication&lt;/STRONG&gt;: NTLM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Authorization&lt;/STRONG&gt;: NTFS (Forced by licence)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Login Address&lt;/STRONG&gt;: Default login page (browser authentication)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Requirements&lt;/STRONG&gt;: We needed to implement qlikview authentication in a webportal that contains an application and embed an &lt;STRONG&gt;iframe&lt;/STRONG&gt; with a qlikview document, this authentication needs to be as invisible as possible so that the user doesnt even know he's using two different applications.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Solution:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Changed Login Address type to Custom login page&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;The reason for this is that we will need to be able to post the user credentials via ajax. Maybe other workarounds exist but this was what we were able to implement.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;IIS Reverse proxy using ARR and URL rewrite&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;We have both websites in the same IIS, o we simply &lt;STRONG&gt;enabled ARR proxy&lt;/STRONG&gt; and in &lt;STRONG&gt;URL rewrite&lt;/STRONG&gt; we created a &lt;STRONG&gt;Reverse Proxy&lt;/STRONG&gt; rule with "&lt;STRONG&gt;QvAjaxZfc(.*)|qlikview(.*)&lt;/STRONG&gt;" as a pattern to &lt;STRONG&gt;rewrite&lt;/STRONG&gt;&lt;SPAN&gt; URL as &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://qlikviewserver/" rel="nofollow" target="_blank"&gt;https://qlikviewserver/&lt;/A&gt;&lt;SPAN&gt;{R:0}&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;This allowed us to access qlikview resources from our webportal like this : &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://webportal/qlikview/FormLogin.htm" rel="nofollow" target="_blank"&gt;https://webportal/qlikview/FormLogin.htm&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;There might be cross origin problems associated so if it doesnt work, that might be something that needs to be handled.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Automatic login&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;As required we want to login in our webportal, and at the same time login in qlikview. Our solution was to use &lt;STRONG&gt;JQUERY&lt;/STRONG&gt; to send a &lt;STRONG&gt;formData&lt;/STRONG&gt; login just like you would send over the &lt;STRONG&gt;FormLogin.htm&lt;/STRONG&gt; page.&lt;/LI&gt;&lt;LI&gt;On click we retrieve the user and password from the webportal form and procede to &lt;STRONG&gt;Post&lt;/STRONG&gt; the data via &lt;STRONG&gt;ajax JQUERY&lt;/STRONG&gt;, with a &lt;STRONG&gt;modified url&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;This method provided us with an &lt;STRONG&gt;invisible login&lt;/STRONG&gt; since there is &lt;STRONG&gt;no redirect to accesspoint&lt;/STRONG&gt; and &lt;STRONG&gt;no call back&lt;/STRONG&gt; in case of failed authentication.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;OL&gt;&lt;LI&gt;$.ajax({&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; type: "POST",&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; url: "/QvAJAXZfc/Authenticate.aspx",&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; data: {&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; username: UserForm.value,&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; password: PasswordForm.value&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; },&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; contentType: "application/x-www-form-urlencoded",&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; success: function () {&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; alert('form was submitted');&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; }&lt;/LI&gt;&lt;LI&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; });&lt;/LI&gt;&lt;/OL&gt;&lt;LI&gt;&lt;STRONG&gt;iFrame&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Just add an &lt;STRONG&gt;iFrame&lt;/STRONG&gt; to your website, with the link you want, in our case we added a link directly to the document we want.&lt;UL&gt;&lt;LI&gt;&lt;A class="jive-link-external-small" href="https://webportal/qlikview/...documentxxx/" rel="nofollow" target="_blank"&gt;https://webportal/qlikview/...documentxxx/&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;It's important to use a link with the &lt;STRONG&gt;webportal domain&lt;/STRONG&gt; since the &lt;STRONG&gt;cookie&lt;/STRONG&gt;&lt;SPAN&gt; provided by the qlikview server is sent to this domain and not the usual &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://qlikviewserver/" rel="nofollow" target="_blank"&gt;https://qlikviewserver/&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;That's it!!! This solution might not work for every scenario but since I never found a solution for SSO with a small business edition licence i thought I could share some knowledge.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Any comments, tips or criticism is always welcome!&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I'll try to create a step by step tutorial when I have time if anyone has problems following this.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SSO-for-Ajax-accesspoint-using-Small-Business-Edition-Solution/m-p/1089016#M1232979</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: SSO for Ajax accesspoint using Small Business Edition Solution</title>
      <link>https://community.qlik.com/t5/QlikView/SSO-for-Ajax-accesspoint-using-Small-Business-Edition-Solution/m-p/1089017#M1232984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;thank you for sharing your solution,technically it look like interesting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ely Malki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 12:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SSO-for-Ajax-accesspoint-using-Small-Business-Edition-Solution/m-p/1089017#M1232984</guid>
      <dc:creator>elyM</dc:creator>
      <dc:date>2016-02-09T12:21:54Z</dc:date>
    </item>
  </channel>
</rss>

