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?