Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Access Point Portal error on login with HTTP Header

HI

I am trying to login into access point by providing a header name as "QVUSER"

On testing it on fiddler, i set the header QVUSER as User1 in the filters and execute the url 'http://localhost/qlikview/index.htm"

ideally it should allow login with username as "User1" but this is not happening and it is being redirected to login addess www.google.com

what am i missing here in order to make this work

thanks

peter

10 Replies
agigliotti
Partner - Champion
Partner - Champion

Hi.

I want to have single sign on between sharepoint (or any given .NET app) and Qlikview.

What I did:

I created a "validate.aspx" file and added the following code on the codebehind:

Response.Headers.Add("QVUSER","obracho");

Response.Redirect("http://qviewserver/QlikVIew/index.htm");

As it didn't work, I also tried this:

NameValueCollection headers = HttpContext.Current.Request.Headers;

headers.Add("QVUSER","myusername");

Response.Redirect("http://qviewserver/QlikView/index.htm");

And that didn't work neither.

I always get a "Login Failed" message.

  • Do you have any clue (or any documentation available) regarding how to do this?
  • Is there any other / alternative way of doing it?
  • How are the people that are doing SSO integration with qlikview doing it?

Thanks for your help !