<?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 Data filtering based on .NET user session token in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180845#M1286906</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;i'm tring to make an example with workbench. I successfully tested the access to qv documents from objects in a workbench asp page.&lt;/P&gt;&lt;P&gt;Now i would access to a document with section access: i writed a page for requesting ticket, passed ticket throw GET to workbench asp page that include objects of protected qv document.&lt;/P&gt;&lt;P&gt;I put the tiket into browser querystring:&lt;/P&gt;&lt;P&gt;http://localIPofServer/folder1/Default.aspx?ticket=XXX&lt;/P&gt;&lt;P&gt;When i try to open asp page, i receive next error message: "Failed to open document, You don't have access to this document." (ones for all objects of the documents).&lt;/P&gt;&lt;P&gt;It appear as a credential error but if i use the same username and password for open the same document in qv server, all works fine.&lt;/P&gt;&lt;P&gt;Any idea for help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Davide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Feb 2011 10:49:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-02-16T10:49:20Z</dc:date>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180838#M1286888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have a .NET website in which we authenticate users using Forms authentication, which basically means there's no NTLM authentication. Forms authentication relies on a session cookie in the browser to indetify the user throughout the session lifespan.&lt;/P&gt;&lt;P&gt;I've also managed to embedd a QlikView document inside one of the aspx pages by using an inline frame (iFrame) html element (using AJAX ZFC), and setting the QV server and access point to allow anonymous access (in the background of course the NTLM user is user is the Anonymous account setup by the AccessPoint).&lt;/P&gt;&lt;P&gt;Now the problem: I want to be able to filter data based on the user who is currenlty logged on into the website. Since the logon is managed by .NET, I don't really have an NTLM user that I can use with the NT variable in the Session Access, nor I want the users to fill in a User/Passw popup.&lt;/P&gt;&lt;P&gt;Is there a way to accomplish this selective filtering with the setup I described? I tried to pass parameters to the QV object in the URL but I don't know if there is a way to retrieve them.&lt;/P&gt;&lt;P&gt;By the way I'm also trying the workbench but the same problem happens when I load the document through the datasource, I don't have a way to pass the QV document a parameter that will allow me to filter data based on a Section Access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers, ideas, documentation wpould be hightly aprecciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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/Data-filtering-based-on-NET-user-session-token/m-p/180838#M1286888</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180839#M1286891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;What you could consider is to configure the QVS in DMS mode. Add the users to for example the custom directory.&lt;/P&gt;&lt;P&gt;Before you open the Ajax QVW in the frame, first request a ticket from QVS for the particular user that you authenticated in the .NET app.&lt;/P&gt;&lt;P&gt;QlikView will return a ticket that you can append to the document URL (&lt;A href="http://server/qvajaxzfc/opendoc.htm?document=xxx&amp;amp;ticket=xxx"&gt;http://server/qvajaxzfc/opendoc.htm?document=xxx&amp;amp;ticket=xxx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The userid that you passed in for the ticket will be available in the NTNAME field in the QVW file. This you can further use in section access to reduce the data for a particular user.&lt;/P&gt;&lt;P&gt;Example code to request a ticket in .NET using QvsNetRemote.DLL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; using QlikTech.NetClient;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; //&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; // GetTicket&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; //&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; private string GetTicket(string userId)&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; {&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; string request;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; QvClient client = new QvClient("localhost", QvClient.Mode.Admin);&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; request = "&amp;lt;Global method=\"GetTicket\"&amp;gt;";&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; request += " &amp;lt;UserId&amp;gt;" + userId + "&amp;lt;/UserId&amp;gt;";&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; request += "&amp;lt;/Global&amp;gt;";&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; string response = client.Execute(request);&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; XmlDocument result = new XmlDocument();&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; result.LoadXml(response);&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; return result.InnerText;&lt;BR style="MARGIN:0cm 0cm 0pt;" /&gt; }&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 16:48:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180839#M1286891</guid>
      <dc:creator />
      <dc:date>2010-03-04T16:48:13Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180840#M1286893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can hand over selections in the AJAX-url in QVS9SR2. It's not really save solution, but maybe a startingpoint.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The example selects "germany" in Listbox "LB1462" and "2007" in Listbox "LB1446"&lt;/P&gt;&lt;P&gt;&lt;A href="http://demo.qlik.com/QvAJAXZfc/opendoc.htm?document=QT%20Sales%20demo%20YTD.qvw&amp;amp;select=LB1462,Germany,USA&amp;amp;select=LB1446,2007"&gt;http://demo.qlik.com/QvAJAXZfc/opendoc.htm?document=QT%20Sales%20demo%20YTD.qvw&amp;amp;select=LB1462,Germany,USA&amp;amp;select=LB1446,2007&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rules:&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;· Separate selections with "&amp;amp;"&lt;BR /&gt;Separate text to select with ","&lt;BR /&gt;White spaces matters&lt;BR /&gt;Case sensitive&lt;BR /&gt;Selections in the url always clears any other selections in the list box&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Additionally use the qva-Javascript object to Lock the listboxes to make it a little more secure:&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;&lt;/P&gt;&lt;P style="language:de;margin-top:0pt;margin-bottom:0pt;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"&gt;// qva.Set("Document.LB1462.LOC", "action", "", true);&lt;BR /&gt;&lt;BR /&gt;For a safe solution you really should go for Ticketing in DMS-Mode of QVS! Then you can utilize the NTNAME-column in your SectionAccess-Table within the .qvw! Retrieve a ticket from the QVS for the logged in username! With this ticket in the URL you can have a singlesignon into qlikview and can restrict data as defined in section access --&amp;gt; Ping me if you need an example for this..&lt;/P&gt;&lt;P style="language:de;margin-top:0pt;margin-bottom:0pt;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"&gt;&lt;/P&gt;&lt;P style="language:de;margin-top:0pt;margin-bottom:0pt;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"&gt;&lt;/P&gt;&lt;P style="language:de;margin-top:0pt;margin-bottom:0pt;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"&gt;&lt;/P&gt;&lt;P style="language:de;margin-top:0pt;margin-bottom:0pt;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;U&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;&lt;/P&gt;&lt;P class="MsoListParagraphCxSpFirst" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1;"&gt;U&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 17:18:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180840#M1286893</guid>
      <dc:creator />
      <dc:date>2010-03-04T17:18:46Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180841#M1286896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Additional point: for security reasons only a member of the "Qlikview Administrator" Group on your QVS (in DMS-Mode) is allowed to retrieve such a ticket.&lt;/P&gt;&lt;P&gt;So if your webportal is run by some other serviceuser, you might not be able to retrieve the ticket directly from the QVS. I normally use a webservice to proxy the ticketrequest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 17:25:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180841#M1286896</guid>
      <dc:creator />
      <dc:date>2010-03-04T17:25:18Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180842#M1286899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A webservice could be a good alternative for that. You could also consider the "normal" impersonifciation features in .NET to make the request in the name of a user that is part of QlikView Administrators&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 17:29:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180842#M1286899</guid>
      <dc:creator />
      <dc:date>2010-03-04T17:29:01Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180843#M1286902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example to request a ticket through qvsviewclient (HTTP based). The example uses impersonification. This means you can specify in the name of which user you want to do the request. Make sure this user is a member of QlikView Administrators on the QVS.&lt;/P&gt;&lt;P&gt;You can use this in situations where you work with a separate webserver that is out of domain or for example when you can not change the identity of an IIS application pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt; private string GetTicket(string qlikviewserver, string username)&lt;BR /&gt; {&lt;BR /&gt; string postData = "&amp;lt;Global method=\"GetTicket\"&amp;gt;&amp;lt;UserId&amp;gt;" + username + "&amp;lt;/UserId&amp;gt;&amp;lt;/Global&amp;gt;";&lt;BR /&gt; byte[] buffer = System.Text.Encoding.ASCII.GetBytes(postData);&lt;BR /&gt; System.Net.WebRequest request = System.Net.HttpWebRequest.Create(qlikviewserver + "/qvajaxzfc/qvsviewclient.asp?admin=");&lt;BR /&gt; request.ContentType = "text/xml";&lt;BR /&gt; request.Method = "POST";&lt;BR /&gt; request.ContentLength = postData.Length;&lt;BR /&gt; request.Credentials = new NetworkCredential("USERNAME", "PASSWORD");&lt;BR /&gt; System.IO.Stream st = request.GetRequestStream();&lt;BR /&gt; st.Write(buffer, 0, buffer.Length);&lt;BR /&gt; st.Flush();&lt;BR /&gt; st.Close();&lt;BR /&gt; WebResponse res = request.GetResponse();&lt;BR /&gt; StreamReader sr = new StreamReader(res.GetResponseStream());&lt;BR /&gt; System.Xml.XmlDocument doc = new System.Xml.XmlDocument();&lt;BR /&gt; try&lt;BR /&gt; {&lt;BR /&gt; doc.LoadXml(sr.ReadToEnd());&lt;BR /&gt; if (doc.InnerText.Length &amp;gt; 0)&lt;BR /&gt; {&lt;BR /&gt; return doc.InnerText;&lt;BR /&gt; }&lt;BR /&gt; throw new Exception("Could not get ticket");&lt;BR /&gt; }&lt;BR /&gt; catch&lt;BR /&gt; {&lt;BR /&gt; throw new Exception("Could not get ticket, invalid response");&lt;BR /&gt; }&lt;BR /&gt; return "";&lt;BR /&gt; }&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 14:21:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180843#M1286902</guid>
      <dc:creator />
      <dc:date>2010-03-10T14:21:40Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180844#M1286904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding the Hyperlink with selections.&lt;/P&gt;&lt;P&gt;When I try the link on my server I am getting an error saying that I don't have access to the document. When I open through Access point then I don't see the message.&lt;/P&gt;&lt;P&gt;I assume that I have to grant access to the opendoc.htm but I'm not sure who to grant the rights to and what privileges are needed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the Qlikview web server and not IIS if that makes a difference&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:14:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180844#M1286904</guid>
      <dc:creator>chriscammers</dc:creator>
      <dc:date>2010-05-21T14:14:32Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180845#M1286906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;i'm tring to make an example with workbench. I successfully tested the access to qv documents from objects in a workbench asp page.&lt;/P&gt;&lt;P&gt;Now i would access to a document with section access: i writed a page for requesting ticket, passed ticket throw GET to workbench asp page that include objects of protected qv document.&lt;/P&gt;&lt;P&gt;I put the tiket into browser querystring:&lt;/P&gt;&lt;P&gt;http://localIPofServer/folder1/Default.aspx?ticket=XXX&lt;/P&gt;&lt;P&gt;When i try to open asp page, i receive next error message: "Failed to open document, You don't have access to this document." (ones for all objects of the documents).&lt;/P&gt;&lt;P&gt;It appear as a credential error but if i use the same username and password for open the same document in qv server, all works fine.&lt;/P&gt;&lt;P&gt;Any idea for help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Davide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 10:49:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180845#M1286906</guid>
      <dc:creator />
      <dc:date>2011-02-16T10:49:20Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180846#M1286908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;i have a new: i set the security to anonymous access (IQVS_*) for folder that contains document data source.&lt;/P&gt;&lt;P&gt;Now i can view a single object of protected document with workbanch. But, if i put some objects of the same documents, the first object is also readable but other are not. None errors are displayed.&lt;/P&gt;&lt;P&gt;Is there a way for putting some objects of a protected document in a single workbech page?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Davide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 16:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180846#M1286908</guid>
      <dc:creator />
      <dc:date>2011-02-24T16:49:57Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180847#M1286910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Davide,&lt;/P&gt;&lt;P&gt;Please check that the identity the aspx page is running under is a member of the QlikView Administrators group. Otherwise you can will receive an "invalid" ticket.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 15:41:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180847#M1286910</guid>
      <dc:creator />
      <dc:date>2011-02-28T15:41:08Z</dc:date>
    </item>
    <item>
      <title>Data filtering based on .NET user session token</title>
      <link>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180848#M1286913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik,&lt;/P&gt;&lt;P&gt;thank you for your attention. I'm doing a lot of tests and i found next conclusion:&lt;/P&gt;&lt;P&gt;- some objects that have more than 10 columns are not displayed (or, in general, all the objects with long width columns). I try to adjust properties of QV objects (width and height) with no effect.&lt;/P&gt;&lt;P&gt;It appears as a problem of rendering, infact i can see the object if i cut a column at time in the original object and try to display it in aspx page. is there a guideline for the correct setting of qv workbench object?&lt;/P&gt;&lt;P&gt;Another similar problem is the next: if i access to the aspx page with my credential, i can see all the objects that i insert, and some other users-credential can. But two users can't see one particular object in the page: first i think about a problem of browser but it isn't the cause becouse if i test the same page with my usual browser with there credential i can't see the object too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;Davide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 15:34:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-filtering-based-on-NET-user-session-token/m-p/180848#M1286913</guid>
      <dc:creator />
      <dc:date>2011-03-02T15:34:01Z</dc:date>
    </item>
  </channel>
</rss>

