home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.rsa.com
/
2014.05.ftp.rsa.com.tar
/
ftp.rsa.com
/
pub
/
partner_engineering
/
ClearTrust
/
Oracle
/
9iasR1
/
ssoct.sql
next >
Wrap
Text File
|
2014-05-02
|
698b
|
29 lines
/* Copyright (c) Oracle Corporation 2001. All Rights Reserved. */
-- Run this script to set the Login Server to ClearTrust authentication mode.
-- Note: The script must be run in the Login Server schema.
@@ssoxct.pkb
set define on
set serveroutput on
set verify off
declare
l_ls_cfg ls_config_type;
begin
wwsso_ls_private.get_ls_configuration(l_ls_cfg);
l_ls_cfg.auth_mechanism := 'EXTERNAL';
wwsso_ls_private.modify_ls_configuration(l_ls_cfg.config_name, l_ls_cfg);
commit;
exception
when others then
dbms_output.put_line('ERROR: Initializing Login Server and Ext Config');
dbms_output.put_line(sqlerrm);
end;
/
commit;
set verify on
show errors