Categories
- All Categories
- 70 Oracle Analytics News
- 7 Oracle Analytics Videos
- 13.9K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 38 Oracle Analytics Trainings
- 56 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 2 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
How to hide / encrypt nqUser and nQPassword when Passing to OBIEE
Hi All
Below code is shared by one of my friends to call the dashboard URL from external portal but portal should be html link. I tried to transform into URL acceptable by command prompt within oracle 11g application through webutil.client_host but failed,
anyone please help, my main requirement is just to hide nqUser and nqPassword or pass encrypted credentials to OBIEE and it should be acceptable
or
suggest is it possible to encrypt the credentials and pass to OBIEE Dashboard.
<form action="http://<BI server name>:<BI server port>/analytics/saw.dll?" method="post">
<input type="hidden" name="nqUser" value="<weblogic>">
<input type="hidden" name="nqPassword" value="<123456789>">
<input type="submit" value="Answers">
</form>
Note:- We are also working on LDAP , document shared by Mr. @Christian Berg but my company needs this option also.
Answers
-
Isn't this a double posting with How to hide Credentials when LWSSO is disable ?
Same topic, same question = same answers (and double posting is against the rules of the community)
0 -
URL and passing username / password is the "hacky" approach and incompatible with a proper SSO approach. You can't have both and the URL approach is definitely something that should be discouraged.
0 -
I have already written in this question about document shared by Mr. @Christian Berg about LDAP. This question is slightly different that's why I have posted but if you think I can delete
0 -
Actually We have multiple clients at different locations with their own infrastructure, some clients may have different requirements that's why our management wants multiple options.
0 -
What they want" does not invalidate what I wrote. The two are mutually exclusive. You can't have both at the same time - you'd need two different OBI domains to handle both.
0 -
What I've done in order to have SSO and non SSO authentication working on the same OBIEE instance is to have a copy of the analytics deployment in WebLogic. One which can be configured for the SSO access and the other to use the standard non SSO authentication.
0 -
Ok 2 deployments work as well. Just like 2 domains or 2 instances. Basically you need to duplicate things on the backend
0 -
As I was told, for OAM and OID separate license is required which some of our clients don't want that's why trying to add other options. Every Client has their own OBIEE environment.
0 -
Hi @Joel Acha
Can you share the solution implemented for SSO and Non- SSO for help
0 -
First thing you need to be aware of is that you’ll need to have some backup strategy that ensures that your changes of the ORACLE_HOME/bi/bifoundation/jee/analytics.earfile are backed up.
Many updates and patches make changes to files within the ear file and as a result, your changes will be overwritten.
These posts below are based on 11g but give you an idea of what you need to do in your 12c instance.
https://support.oracle.com/epmos/faces/DocumentDisplay?id=1459445.1
The blog below describes where you’ll need to make changes to references of analytics in your copy of the analytics WebLogic deployment to ensure that it points to your new WebLogic deployment.
For example, you could call it analytics-sso. Your URL will be http://OBIEE_SERVER:OBIEE_PORT/analytics-sso
0