If you use SSO authentication for your applications and you need to grab the SSO User from your applications here is how you do it:
Oracle Forms
GET_APPLICATION_PROPERTY(SSO_USERID);
jDeveloper project that uses JSP and java beans
request.getHeader("OSSO_SUBSCRIBER") or request.getRemoteUser();
jDeveloper that uses Java Server Faces (JSF) In your AppModuleImpl.java you can get the SSO user by calling
this.getUserPrincipalName();
|
We are using that way in Forms. but how to prevent end user change the value of sso_userid in base.html and enter to applicatios as other user?