Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
BI SQL Provider - weblogic.xml and web.xml file creation

HI All,
I am currently working on configuring BI Sql provider in Weblogic console
Kerberos SSO- windows 2012 + OBIEE 11.1.1.7 + AD users (no groups) + External table for groups (BI SQL provider)
I have configured AD and BI SQL Provider and able to see users and groups in Weblogic console.
Keytab looks fine as this creates a new ticket in cache file.
I am stuck at a part where i have to modify weblogic.xml and web.xml, not sure what exactly i have to modify and update with.
Thank you all in advance
Answers
-
Found below document which is helpful
OBIEE 12c: End to End Steps for Enabling SAML 2.0 SSO on OBIEE 12c using ADFS - Single Node (Doc ID 2248571.1)
0 -
Hello There,
You could refer to more accurate document mentioned below which is specific to OBIEE 11g-Kerberos SSO configuration.
OBIEE 11g: Configuring Authentication and SSO with Active Directory and Windows Native Authentication (Doc ID 1274953.1)
Please Note: While making changes in weblogic.xml you have to define "
<span style="font-size: 9.0pt;"><principal-name></span>
" tag with AD Groups which would be responsible for Authorization, please see below content from above mentioned document."The principal name element(s) should refer to the Active Directory groups (not Application Roles) you wish to allow access to the application. NB all BI users will need to be members of at least one of the these groups."
But since you are not planning to work with AD Groups, I am not sure how exactly would your Authorization part will work for Kerberos configured OBIEE environment as it is mentioned that it is mandatory for user to be part of at least one AD group defined in "
<span style="font-size: 9.0pt;"><principal-name></span>
" tag.Thanks
0 -
Thanks for the reply,
though this document (Doc ID 2248571.1) talks about SAML configuration, i got clear idea that how to modify/update weblogic.xml and web.xml, explained very clearly in this doc.
We have raised an SR with Oracle support.
0 -
Hello There,
Document (Doc ID 1274953.1) is the document for OBIEE11g-Kerberos SSO configuration.
Please also note that I have tested this in OBIEE 12c but not sure if it works in 11g as well or not.
If "
<span style="font-weight: inherit; font-style: inherit; font-size: 9pt; font-family: inherit;"><principal-name></span>
" tag is defined as users then all the authenticated user of OBIEE would be able to access analytics application.Your weblogic.xml document would look something as below:
<span style="font-size: 9.0pt;"><?xml version = '1.0' encoding = 'windows-1252'?></span>
<span style="font-size: 9.0pt;"><span><weblogic-web-app xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" rel="nofollow">http://www.w3.org/2001/XMLSchema-instance</a><span>"</span></span>
<span style="font-size: 9.0pt;"><span> xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://www.bea.com/ns/weblogic/weblogic-web-app" rel="nofollow">http://www.bea.com/ns/weblogic/weblogic-web-app</a><span> </span><a class="jive-link-external-small" href="http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd" rel="nofollow">http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd</a><span>"</span></span>
<span style="font-size: 9.0pt;"><span> xmlns="</span><a class="jive-link-external-small" href="http://www.bea.com/ns/weblogic/weblogic-web-app" rel="nofollow">http://www.bea.com/ns/weblogic/weblogic-web-app</a><span>"></span></span>
<span style="font-size: 9.0pt;"> <context-root>analytics</context-root></span>
<span style="font-size: 9.0pt;"> <security-role-assignment></span>
<span style="font-size: 9.0pt;"> <role-name>SSORole</role-name></span>
<span style="font-size: 9.0pt;"> <principal-name>users</principal-name></span>
<span style="font-size: 9.0pt;"> </security-role-assignment></span>
<span style="font-size: 9.0pt;"></weblogic-web-app></span>
If your question is answered here then please close the thread marking the correct/helpful answer.
Thanks,
0