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

Assign Users to a Doc Cal

I am working on a SEE 11 SR2 server deployment for a customer of mine, but I am facing a problem with the assignment of users to a Document Cal. I am using DMS mode for authorisation and now I am trying to assign an Active Directory Group as Document Cal.

I reserved enough Document Cals for every user in the AD Group but I still get the "no license" error. Is it possible that Document Cal don't support AD Groups?

I hope one of you can help me out here?

2 Replies
goldnejea8
Partner - Creator
Partner - Creator

Here is a thread that might be able to help.  Basically you would have to use Power Tools to automate the assignment of licenses.

http://community.qlik.com/thread/52644

Not applicable
Author

I tried the powertools  - QV User Manager 11. I configured the qv-user-manager.exe.config as shown bellow:

             <endpoint address="http://<MyServerName>:4799/QMS/Service" binding="basicHttpBinding"

              bindingConfiguration="BasicHttpBinding_IQMS" contract="QMSAPI.IQMS"

              name="BasicHttpBinding_IQMS" behaviorConfiguration="ServiceKeyEndpointBehavior" />

But then I get the following error:

error_powertools.jpg

I used the default batch file were I only changed folderpath to the qv-user-manager.exe:

@echo off
echo qv-user-manager.exe --list docs
..\..\qv-user-manager.exe --list docs > data\docinfo.csv                         <<<<<
if errorlevel 1 goto error

echo qv-user-manager.exe --list dms
..\qv-user-manager.exe --list dms > data\dmsusers.csv
if errorlevel 1 goto error

echo qv-user-manager.exe --list cal
..\qv-user-manager.exe --list cal > data\cal.csv
if errorlevel 1 goto error

echo qv-user-manager.exe --list calinfo
..\qv-user-manager.exe --list calinfo > data\calinfo.csv
if errorlevel 1 goto error

goto end

:error
echo.
echo An error occured! Verify that the address in qv-user-manager.config is correct.
echo.
pause

:end

What am I doing wrong?