<?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: Workbench in a Active Directory environment in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773088#M1234012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share a piece of code where you use QProx.aspx?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Feb 2016 18:06:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-23T18:06:58Z</dc:date>
    <item>
      <title>Workbench in a Active Directory environment</title>
      <link>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773087#M1234009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have a qlikviewserver, a Publisher and a webserver.&lt;/P&gt;&lt;P&gt;We host a website on the webserver where a mashup of different qlikview objects from several qlikviewdocuments are rendered using Workbench. (Div integration) It worked great on our local system that does not use a Active directory.&lt;/P&gt;&lt;P&gt;I use the QProx.aspx file so I don't get CORS problems, it works great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I put the Project on our clients servers that has an Active Directory and uses Windows authentication the problems appeared.&lt;/P&gt;&lt;P&gt;"You do not have access to this document." The qlikview server did not get any user information to authenticate.&lt;/P&gt;&lt;P&gt;So I tried using webtickets, but if I wanted to use webtickets I had to use DMS instead of NTFS but I am not allowed to change to DMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there at way to solve my problem?&lt;/P&gt;&lt;P&gt;Server - Publisher - web server - Workbench - Windows Authentication&lt;/P&gt;&lt;P&gt;All these things must be able to work together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankful for all help I can get!&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/Workbench-in-a-Active-Directory-environment/m-p/773087#M1234009</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Workbench in a Active Directory environment</title>
      <link>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773088#M1234012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share a piece of code where you use QProx.aspx?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 18:06:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773088#M1234012</guid>
      <dc:creator />
      <dc:date>2016-02-23T18:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Workbench in a Active Directory environment</title>
      <link>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773089#M1234017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi have the same problem, but I found the solution by modifying the QProxy.aspx:&lt;/P&gt;&lt;P&gt;&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; string user = GetUserName();&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; HttpResponse response = Context.Response;&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; response.ClearContent();&lt;/P&gt;&lt;P&gt;&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; string proxyUrl = GetProxyUrl(Request, user);&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; if (proxyUrl == string.Empty) return;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(proxyUrl);&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; request.Method = Context.Request.HttpMethod;&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; request.PreAuthenticate = true;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string password = ConfigurationManager.AppSettings["password"];&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; NetworkCredential networkCredential = new NetworkCredential(user, password);&lt;/P&gt;&lt;P&gt;&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; // Associate the 'NetworkCredential' object with the 'WebRequest' object.&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; request.Credentials = networkCredential;&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; //request.UseDefaultCredentials = true;&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; //request.Credentials = CredentialCache.DefaultCredentials;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 16:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773089#M1234017</guid>
      <dc:creator>rospigliosi</dc:creator>
      <dc:date>2016-02-24T16:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Workbench in a Active Directory environment</title>
      <link>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773090#M1234019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, &lt;/P&gt;&lt;P&gt;I found the cause of my problem when I was reading about the tool for qlikview and share point, webparts. When using workbench on a site published on a web server there are problems with windows authentication. The client enter the web site which in turn gets the objects from qlikview. But this causes multi hop authentication, client computer -&amp;gt; web server -&amp;gt; qlikview. Which windows doesn't allow. So the qlikview server can't authenticate you. You could try to use something other than windows authentication on the qlikview server, but I did not have the time to test this. I just used iframes and singleobject.html. Not as responsive but good enough. Hope you find the answer to your problem! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 17:21:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Workbench-in-a-Active-Directory-environment/m-p/773090#M1234019</guid>
      <dc:creator />
      <dc:date>2016-02-24T17:21:08Z</dc:date>
    </item>
  </channel>
</rss>

