Problem exporting authentication schemes
556814Mar 19 2007 — edited Mar 20 2007Hi All,
I'm using the export facility to export my application from the development environment so that I can import it into the test environment.
I have created a custom authentication scheme and set it to be the current one. However, when I import the file, my custom authentication scheme has not come across.
When I view the actual contents of the export file, the definition for my custom authentication scheme is incomplete :
--application/shared_components/security/authentication/custom_login
prompt ......scheme 6628807521709959
begin
declare
s1 varchar2(32767) := null;
s2 varchar2(32767) := null;
s3 varchar2(32767) := null;
s4 varchar2(32767) := null;
s5 varchar2(32767) := null;
begin
s1 := null;
s2 := null;
s3 := null;
s4:=s4||'return validate_login';
s5:=s5||':F102_CLIENT_ID := :P101_CLIENT_ID';
wwv_flow_api.create_auth_setup (
p_id=> 6628807521709959 + wwv_flow_api.g_id_offset,
p_flow_id=> wwv_flow.g_flow_id,
p_name=> 'CUSTOM_LOGIN',
p_description=>'',
p_page_sentry_function=> s1,
p_sess_verify_function=> s2,
p_pre_auth_process=> s3,
p_auth_function=> s4,
p_post_auth_process=> s5,
p_invalid_session_page=>'101',
p_invalid_session_url=>'',
p_cookie_name=>'',
p_cookie_path=>'',
p_cookie_domain=>'',
p_ldap_host=>'',
p_ldap_port=>'',
p_ldap_string=>'',
p_attribute_01=>'',
p_attribute_02=>'wwv_flow_custom_auth_std.logout?p_this_flow=&APP_ID.&p_next_flow_page_sess=&APP_ID.:101',
p_attribute_03=>'',
p_attribute_04=>'',
p_attribute_05=>'',
p_attribute_06=>'',
p_
-- this is the end of the file
Could you pleae advise what is causing this problem.
If I create an extra 'dummy' authentication scheme, then it gets cut off, but my original one is included. So it looks as if it's not including the last authentication scheme.
The total size of the export file is 1.74MB.
Any assistance would be appreciated.
Many Thanks,
Marquita