Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QlikView AccessPoint - Document request from external website

Hi,

We need to access the documents on a server based on the user access rights within an external app (trough iframe or other similar method). What I need to know is:

1. How this can be done so that the QVS is not requesting user name and password again to the final user. The user is already connected to the web app / web page; Thew username and password should be transmitted to the QVS from the external app in a hidden way for the user;

2: What is the syntax of the actual request / the script to transmit to the QVS the user name and the password, and what parameters should be used.

Plese note that the external app is developed under java.

Regards,

John

4 Replies
Not applicable
Author

We are trying to do this with flex also

Not applicable
Author

Dear John.

I am also trying to do the same as you.

did you succeed in doing this?

if yes then please guide me.

Thanks,

Mukram.

danielrozental
Master II
Master II

You need to use Webtickets + DMS + Enterprise Edition license to achieve this.

agigliotti
Partner - Champion
Partner - Champion

Hi.

I've been working on the QvAjaxZfc solution of the IIS Qlikview installation.

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 !