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 >
Text File  |  2014-05-02  |  698b  |  29 lines

  1. /*  Copyright (c) Oracle Corporation 2001. All Rights Reserved. */
  2.  
  3. -- Run this script to set the Login Server to ClearTrust authentication mode.
  4. -- Note: The script must be run in the Login Server schema.
  5.  
  6. @@ssoxct.pkb
  7.  
  8. set define on
  9. set serveroutput on
  10. set verify off
  11.  
  12. declare
  13.     l_ls_cfg      ls_config_type;
  14. begin
  15.     wwsso_ls_private.get_ls_configuration(l_ls_cfg);
  16.     l_ls_cfg.auth_mechanism := 'EXTERNAL';
  17.     wwsso_ls_private.modify_ls_configuration(l_ls_cfg.config_name, l_ls_cfg);
  18.     commit;
  19.  
  20. exception
  21.     when others then
  22.         dbms_output.put_line('ERROR: Initializing Login Server and Ext Config');
  23.         dbms_output.put_line(sqlerrm);
  24. end;
  25. /
  26. commit;
  27. set verify on
  28. show errors
  29.