Important Update Effective February 1, 2024!
Due to recent changes in Jira and Confluence, we've made the tough decision to discontinue the OpenID Connect (OIDC)/OAuth app and no longer provide new versions for the newest Jira/Confluence releases as of January 31, 2024.
This is due to some necessary components no longer shipping with Jira/Confluence, which would require some extensive rewrites of the OIDC App.
Important Update! This app will be discontinued soon!
Due to recent changes in Jira, which no longer ships with some components required for our Read Receipts app to run, we've made the tough decision to discontinue the app, as of Februar 5, 2025.
Important Update! This app will be discontinued soon!
We've made the tough business decision to discontinue the app, as of January 11, 2025.
Where to find the stored SAML SSO configuration in the Database ?
The SAML SSO configurations are splitted in different versions, based on the version of the SAML SSO plugin for Atlassian Data Center / Server application. Please find your correct version in the table:
SAML SSO Plugin version | SAML SSO Configuration version |
---|---|
0.14.7 and less | com.resolution.atlasplugins.samlsso:xmlConfiguration |
0.15.0 - 0.15.7 | com.resolution.atlasplugins.samlsso:2:xmlConfiguration |
2.0.0 - 2.0.12 | com.resolution.atlasplugins.samlsso:3:xmlConfiguration |
2.1.0 - 2.2.0 | com.resolution.atlasplugins.samlsso:4:xmlConfiguration |
2.3.0 - 2.3.5 | com.resolution.atlasplugins.samlsso:5:xmlConfiguration |
2.4.0 - 3.0.3 | com.resolution.atlasplugins.samlsso:6:xmlConfiguration |
3.1.0 - 3.1.7 | com.resolution.atlasplugins.samlsso:7:xmlConfiguration |
3.2.2 | com.resolution.atlasplugins.samlsso:7:jsonConfiguration |
3.2.2 | com.resolution.atlasplugins.samlsso:8:jsonConfiguration |
3.3.0 - 3.6.5 | com.resolution.atlasplugins.samlsso:9:jsonConfiguration |
4.x | com.resolution.atlasplugins.samlsso:10:jsonConfiguration |
5.x | com.resolution.atlasplugins.samlsso:11:jsonConfiguration |
6.x | com.resolution.atlasplugins.samlsso:12:jsonConfiguration |
In the following descriptions, we are retrieving all the available configuration records if you have previous versions installed already.
To know which exact one that is currently being used, check the table above for the corresponding configuration version to your current plugin version.
Jira Data Center / Server
Database explorer:
- Open table PROPERTYENTRY and search in the column "property_key" for the values that start with "com.resolution.atlasplugins.samlsso:".
- You should see all the configuration records if you have previous versions installed already, check the latest one as per the table above.
- Check the "ID" column for that row.
- Open table PROPERTYTEXT and there you should find the column "propertyvalue".
- Search for the specific row, based on the ID found one step above, and there you should find the SAML SSO plugin configuration information as text
SQL statement:
SELECT propertyentry.property_key, propertytext.propertyvalue
FROM propertyentry
INNER JOIN propertytext ON propertyentry.id=propertytext.id
WHERE property_key LIKE 'com.resolution.atlasplugins.samlsso:%';
Single SQL query to retrieve the data
select*
from propertytext
join propertyentry on propertyentry.id = propertytext.id
where propertyentry.property_key like 'com.resolution.atlasplugins.samlsso:%'
Confluence Data Center / Server
Database explorer:
Table BANDANA → Column "bandanakey": values that start with "com.resolution.atlasplugins.samlsso:" → Column "bandanavalue" → SAML SSO plugin configuration information as text
SQL statement:
SELECT bandanakey, bandanavalue
FROM bandana
WHERE bandanakey LIKE 'com.resolution.atlasplugins.samlsso:%';
Bitbucket Data Center / Server
Database explorer:
Table PLUGIN_SETTING → Column "key_name": values that start with com.resolution.atlasplugins.samlsso: → Column "key_value" → SAML SSO plugin configuration information as text
SQL statement:
SELECT key_name, key_value
FROM plugin_setting
WHERE key_name LIKE 'com.resolution.atlasplugins.samlsso:%';