Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Problem: For Jira instances with CAS autentication error arises while trying to import data into Tableau Desktop

Solution: Whitelist Authentication

Whitelisting Authentication include 3 steps:

  • Shutdown Jira

  • Modify web.xml

  • Start Jira

Step 1. Shutdown Jira

Make sure Jira is shut down.

web.xml file exists in the following location (note, JIRA_INSTALL by default is set to the /opt/atlassian/jira/atlassian-jira/ directory): JIRA_INSTALL/WEB-INF/

Step 2. Modify web.xml

Modify the web.xml file, add the following strings to the filter org.jasig.cas.client.authentication.AuthenticationFilter:

<init-param>
  <param-name>ignorePattern</param-name>
  <param-value>plugins/servlet/tableau</param-value>
</init-param>
<init-param>
  <param-name>ignoreUrlPatternType</param-name>
  <param-value>CONTAINS</param-value>
</init-param>

Step 3. Start Jira

In case you need more information please visit INTEGRATING JIRA AND SSO USING CAS page.

  • No labels