Start a conversation

How do I configure Windows Authentication for the QPP Clients?

You will need to perform these additional steps...

  • To configure Windows Authentication for the Web Client, Go to Platform Server > webapps > workspace > WEB-INF > web.xml and uncomment the following filter:

<filter>
<filter-name>SecurityFilter</filter-name>
<filter-class>com.quark.web.security.servlet.ApplicationSecurityFilter</filter-class>
<init-param>
<param-name>provider</param-name>
<param-value>com.quark.web.security.wafflle.WaffleAuthenticationProvider</param-value>
</init-param>
<init-param>
<param-name>provider/protocols</param-name>
<param-value>NTLM</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

  • To configure Windows Authentication for the QPP Clients (QXP/QCD/QPP Client), Go to Platform Server > webapps > webservices > WEB-INF > web.xml and uncomment the following filter:

<filter>
<filter-name>SecurityFilter</filter-name>

<filter-class>com.quark.web.security.servlet.ApplicationSecurityFilter</filter-class>
<init-param>
<param-name>provider</param-name>
<param-value>com.quark.web.security.wafflle.WaffleAuthenticationProvider</param-value>
</init-param>
<init-param>
<param-name>provider/protocols</param-name>
<param-value>Kerberos Negotiate NTLM</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

Note: Please refer to the QPP 9.5 System Admin Guide for details.

Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted
  3. Updated

Comments