Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewwizard
Master II
Master II

Skip domain login credentials

Hi All,

We are using Qlikview 11.2.

We are using windows NT login credentials with domain credentials.

How to skip domain name to login access point and how to show logout button to switch to the other account?

1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi Arjun,

Please see my post..

LDAP Setup(with AD)

BR,

Chinna

View solution in original post

8 Replies
settu_periasamy
Master III
Master III

Hi,

Not sure about the Logout Button in the Access Point. May be, if you want to show the login prompt, you can try like below

Installed Qlikview but Access point always logged with Ananymous

Capture.JPG

Kushal_Chawda

may be this will help

Log out for access point

Not applicable

Hi,

try this add this same piece of code in Formlogin.htm. this file can be found in  here (default path: C:\Program Files\QlikView\Web). Please make sure you take copy of this file before updating.

Here the domain Name is passed as "mydomain" you can change accordingly. 

<script type="text/javascript">

function PrependDomain(){

   var user = document.loginform.username.value;

   var domain = "mydomain";

   if (user.toUpperCase().indexOf(domain) > -1){ //domain has already been entered manually (don't append it again)

      return true;

   } else { //domain name has not been entered, append it

      document.loginform.username.value = domain + "\\" + user;

   }

}

</script>

qlikviewwizard
Master II
Master II
Author

Hi Dude, I want to logout when using access point. But this is not showing 'Log Out" button.

qlikviewwizard
Master II
Master II
Author

Hi Dude,It is asking domain name.

Not applicable

Hi,

For Logout change the following setting in QMC

Go to System-->Qlikview Web Server-->Authentication-->Login Address-->Check Alternate login page.

karthikeyan1504
Creator III
Creator III

Hi,

Go to form login file and prefix the domain name in the login user name command.

But I haven't tried this yet how feasible it is.

Anonymous
Not applicable

Hi Arjun,

Please see my post..

LDAP Setup(with AD)

BR,

Chinna