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

Cal's Information

Hi,

in the QMC, Qlikview Licence Server, we have a section Client Access Licences , and i'm looking how to get " Last Used", i checked all the log's without result.

is anybody have an idea ???

log.PNG

by the way, i'm working with QV v11 x64.

thanks

7 Replies
danielrozental
Master II
Master II

Try the "Qv User Manager" Powertool, if you export the CALs assigned you will also get the last used field.

http://community.qlik.com/docs/DOC-3059

Anonymous
Not applicable
Author

Thanks daniel, but when i try to extract the CSV i've got this message :

The message with Action 'http://ws.qliktech.com/QMS/10.1/IQMSBackend/GetTimeLimitedServiceKey' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver.  Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).

i used :

qv-user-manager.exe --list cal > cals.csv

knowing that i updated the .config whit my QMS url.

thakns

danielrozental
Master II
Master II

Would you mind posting your config file?

You should probably post the error you're getting in the Powertools document comments as Stefan, the person who created the powertools, might know how to correct your problem.

Anonymous
Not applicable
Author

<?xml version="1.0" encoding="utf-8"?>

<configuration>

    <system.serviceModel>

      <extensions>

        <behaviorExtensions>

          <add name="serviceKeyBehavior" type="qv_user_manager.ServiceKeyBehaviorExtensionElement, qv-user-manager, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null"/>

        </behaviorExtensions>

      </extensions>

      <behaviors>

        <endpointBehaviors>

          <behavior name="ServiceKeyEndpointBehavior">

            <serviceKeyBehavior/>

          </behavior>

        </endpointBehaviors>

      </behaviors>

      <bindings>

          <basicHttpBinding>

              <binding name="BasicHttpBinding_IQMS" closeTimeout="00:01:00"

                  openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"

                  allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"

                  maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"

                  messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"

                  useDefaultWebProxy="true">

                  <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"

                      maxBytesPerRead="4096" maxNameTableCharCount="16384" />

                  <security mode="TransportCredentialOnly">

                      <transport clientCredentialType="Ntlm" proxyCredentialType="None"

                          realm="" />

                      <message clientCredentialType="UserName" algorithmSuite="Default" />

                  </security>

              </binding>

          </basicHttpBinding>

      </bindings>

      <client>

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

            bindingConfiguration="BasicHttpBinding_IQMSBackend" contract="QMSBackendService.IQMSBackend"

            name="BasicHttpBinding_IQMSBackend" behaviorConfiguration="ServiceKeyEndpointBehavior" />

      </client>

    </system.serviceModel>

  <startup>

    <supportedRuntime version="v2.0.50727" sku="Client"/>

  </startup>

</configuration>

Anonymous
Not applicable
Author

When i did :

qv-user-manager.exe --list cal > cals.csv

i've got this message in my cals.csv

  The binding at system.serviceModel/bindings/basicHttpBinding does not have a configured binding named 'BasicHttpBinding_IQMSBackend'. This is an invalid value for bindingConfiguration. (C:\Users\n.kasdali\Desktop\PowerTools\Qv User Manager 11\qv-user-manager.exe.Config line 35)

Anonymous
Not applicable
Author

ahhh i forgot, i'm using le script under my server QV, this is why i'm using

"http://localhost:4799/QMS/Service"

thanks

danielrozental
Master II
Master II

This is what I have, you can try changing yours

      <client>

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

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

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

      </client>