Home » RDBMS Server » Security » SSO Outside of Forms
SSO Outside of Forms [message #477974] |
Tue, 05 October 2010 08:02 |
Kevin58
Messages: 79 Registered: January 2009
|
Member |
|
|
Is there a way to obtain the single signon user without using forms?
There does not appear to be an easy way to test this code
unless one deploys the form to the application server and then have it launched via SSO login.
Here is the code example:
declare
uid varchar2(20);
udn varchar2(50);
sdn varchar2(50);
begin
uid := Get_Application_Property(sso_userid);
dbms_output.put_line('sso userid is '||uid);
udn := Get_Application_Property(sso_usrdn);
dbms_output.put_line('sso userid is '||udn);
sdn := Get_Application_Property(sso_subdn);
dbms_output.put_line('sso userid is '||sdn);
end;
I would like to be able to test SSO a little more straight forward than develop/deploy/launch.
What are your experiences with single signon?
|
|
|
Goto Forum:
Current Time: Fri Apr 04 20:15:29 CDT 2025
|