<?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: Web Portal Login to Authenticate qliksense User in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1515047#M11937</link>
    <description>&lt;P&gt;Hi Brijeshma,&lt;BR /&gt;&lt;BR /&gt;did you find a solution for your problem?&lt;BR /&gt;&lt;BR /&gt;I do have the same problem.&lt;BR /&gt;&lt;BR /&gt;best regards&lt;BR /&gt;Christoph&lt;/P&gt;</description>
    <pubDate>Fri, 30 Nov 2018 18:18:45 GMT</pubDate>
    <dc:creator>chrisg</dc:creator>
    <dc:date>2018-11-30T18:18:45Z</dc:date>
    <item>
      <title>Web Portal Login to Authenticate qliksense User</title>
      <link>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1156865#M6945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a QAP Server Installed on Windows Server 2012 R2. and We have a Web Portal Running on Apache server . Web Portal is developed on PHP.&amp;nbsp; With the help of Single Configurator ( Iframe ) we have Embedded a Sheet on Company Web Poratal. if Cust want to access a Poratal they Login to Web portal with their credential . Same User Id we have in Qliksense user. But When User si loging in&amp;nbsp; the Web Poratal . Qliksense again asking for Qliksense Aunthentication window asking again for Id and Password. So how can we do that if customer login to web Portal Qliksense should not ask for Id and Password again. and able to view qliksense sheet directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked certain Web ticketing and header Authentication Blog. but not able to Achieve this with PHP Coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can Someone help me on this.and if can share any PHP Code how it can work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 09:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1156865#M6945</guid>
      <dc:creator>brijeshvma</dc:creator>
      <dc:date>2016-07-14T09:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Web Portal Login to Authenticate qliksense User</title>
      <link>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1515047#M11937</link>
      <description>&lt;P&gt;Hi Brijeshma,&lt;BR /&gt;&lt;BR /&gt;did you find a solution for your problem?&lt;BR /&gt;&lt;BR /&gt;I do have the same problem.&lt;BR /&gt;&lt;BR /&gt;best regards&lt;BR /&gt;Christoph&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 18:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1515047#M11937</guid>
      <dc:creator>chrisg</dc:creator>
      <dc:date>2018-11-30T18:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Web Portal Login to Authenticate qliksense User</title>
      <link>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1695809#M15931</link>
      <description>&lt;P&gt;I'm having the same issue...&lt;/P&gt;&lt;P&gt;I've set up an iFrame in my test portal site, using VB.Net code (which is what my customers portal is written in):&lt;/P&gt;&lt;P&gt;&amp;lt;iframe id="urIframe" style="width: 1077px; height: 600px" runat="server" /&amp;gt;&lt;/P&gt;&lt;P&gt;And here is my code:&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'Dim impersonationContext As System.Security.Principal.WindowsImpersonationContext&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Dim currentWindowsIdentity As System.Security.Principal.WindowsIdentity&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;currentWindowsIdentity = CType(User.Identity, System.Security.Principal.WindowsIdentity)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'impersonationContext = currentWindowsIdentity.Impersonate&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'If impersonateValidUser(ServiceAccount, "domain", ServiceAccountPwd) Then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' Create a request for the URL.&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim MyCreds As New NetworkCredential("{DOMAIN}\{USER}", "{PASSWORD}")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim mycache As New CredentialCache&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim Url As String = "{QLIK Report URL}"&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim myFullUri = New Uri(Url)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mycache.Add(New Uri(myFullUri.Scheme &amp;amp; "://" &amp;amp; myFullUri.Authority), "Basic", MyCreds)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim request As WebRequest = WebRequest.Create(Url)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; request.Credentials = mycache&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim response As WebResponse = CType(request.GetResponse(), WebResponse)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; urIframe.Attributes.Add("src", response.ResponseUri.AbsoluteUri)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Label1.Text = ex.ToString()&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;/P&gt;&lt;P&gt;When I navigate directly to the URL, I get a pop-up logon window but when I execute my code above, it puts a Qlik logon screen in the iFrame, however, it does not automatically logon to Qlik.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 15:52:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Web-Portal-Login-to-Authenticate-qliksense-User/m-p/1695809#M15931</guid>
      <dc:creator>tbenavidez</dc:creator>
      <dc:date>2020-04-22T15:52:22Z</dc:date>
    </item>
  </channel>
</rss>

