DBA Data[Home] [Help]

APPS.ICX_SEC dependencies on OWA_UTIL

Line 157: l_remote_addr := owa_util.get_cgi_env('REMOTE_ADDR');

153: t_language := fnd_profile.value('ICX_LANGUAGE');
154:
155: --start bug 3100151
156:
157: l_remote_addr := owa_util.get_cgi_env('REMOTE_ADDR');
158:
159: insert into icx_failures
160: (user_name,password,failure_code,failure_date,
161: created_by, creation_date, last_updated_by,

Line 432: l_ip_address := owa_util.get_cgi_env('REMOTE_ADDR');

428: l_user_id := l_parameters(1);
429: l_responsibility_id := l_parameters(2);
430: l_function_id := l_parameters(3);
431:
432: l_ip_address := owa_util.get_cgi_env('REMOTE_ADDR');
433:
434: l_session_id := 1234;
435:
436: owa_util.mime_header('text/html', FALSE);

Line 436: owa_util.mime_header('text/html', FALSE);

432: l_ip_address := owa_util.get_cgi_env('REMOTE_ADDR');
433:
434: l_session_id := 1234;
435:
436: owa_util.mime_header('text/html', FALSE);
437:
438: sendsessioncookie(l_session_id);
439:
440: owa_util.http_header_close;

Line 440: owa_util.http_header_close;

436: owa_util.mime_header('text/html', FALSE);
437:
438: sendsessioncookie(l_session_id);
439:
440: owa_util.http_header_close;
441:
442: l_url := 'OracleApps.RF?F='||icx_call.encrypt2(l_responsibility_id||'*'||l_function_id||'**]');
443:
444: htp.htmlOpen;

Line 548: l_server_host := owa_util.get_cgi_env('SERVER_NAME');

544: l_server_id := p_server_id;
545:
546: if l_server_id is null
547: then
548: l_server_host := owa_util.get_cgi_env('SERVER_NAME');
549:
550: -- Bug 3361985
551: -- where lower(node_name) = l_server_host;
552:

Line 913: l_server_host := owa_util.get_cgi_env('SERVER_NAME');

909: l_server_id := p_server_id;
910:
911: if l_server_id is null
912: then
913: l_server_host := owa_util.get_cgi_env('SERVER_NAME');
914:
915: -- Bug 3361985
916: -- where lower(node_name) = (l_server_host);
917:

Line 993: owa_util.mime_header('text/html', FALSE);

989: --start bug 3154705
990: -- Only expire the cookie if it already exists
991:
992: v_cookie := owa_cookie.get('WF_WORKLIST_MODE');
993: owa_util.mime_header('text/html', FALSE);
994:
995: IF (v_cookie.num_vals > 0) THEN
996:
997: owa_cookie.send(name=>'WF_WORKLIST_MODE', value=>'-1', expires=>'', path=>'/');-- mputman added for 1903545

Line 1004: owa_util.http_header_close;

1000: --end bug 3154705
1001:
1002: sendsessioncookie(l_session_id); -- mputman reordered, ICX cookie must be last for FWK
1003:
1004: owa_util.http_header_close;
1005:
1006: l_message := createSessionPrivate( p_user_id => user_info.user_id,
1007: p_server_id => l_server_id,
1008: p_session_id => l_session_id,

Line 1052: owa_util.mime_header('text/html', FALSE);

1048:
1049: n_session_id := l_session_id;
1050:
1051: if (IncludeHeader) then
1052: owa_util.mime_header('text/html', FALSE);
1053: end if;
1054:
1055: sendsessioncookie(l_session_id);
1056:

Line 1058: owa_util.http_header_close;

1054:
1055: sendsessioncookie(l_session_id);
1056:
1057: if (IncludeHeader) then
1058: owa_util.http_header_close;
1059: end if;
1060:
1061: return createSessionPrivate(p_user_id => -1,
1062: p_server_id => l_server_id,

Line 1865: l_browser := owa_util.get_cgi_env('HTTP_USER_AGENT');

1861: l_url := l_url||'OracleApps.displayLogin?recreate='||l_recreate_code;
1862: -- this fix isnt adequately tested. Will implement in later patch after testing
1863: --begin fix for 2214199
1864: /*
1865: l_browser := owa_util.get_cgi_env('HTTP_USER_AGENT');
1866: IF (instrb(l_browser,'MSIE')>0) THEN
1867: l_browser_is_IE := TRUE;
1868: ELSE
1869: l_browser_is_IE := FALSE;

Line 1872: l_server_name := owa_util.get_cgi_env('SERVER_NAME');

1868: ELSE
1869: l_browser_is_IE := FALSE;
1870: END IF;
1871: IF l_browser_is_IE THEN
1872: l_server_name := owa_util.get_cgi_env('SERVER_NAME');
1873: l_domain_count := instr(l_server_name,'.',-1,2);
1874: if l_domain_count > 0
1875: then
1876: l_domain_count := instr(l_server_name,'.',1,1);

Line 1892: owa_util.mime_header('text/html', TRUE); -- added to prevent login loop 2065270 mputman

1888:
1889: --end fix for 2214199
1890: */-- mputman
1891:
1892: owa_util.mime_header('text/html', TRUE); -- added to prevent login loop 2065270 mputman
1893: htp.p('');-- added to prevent login loop 2065270 mputman
1894: htp.htmlOpen;
1895: --part of 2214199 .. not ready to be released.
1896: /*

Line 2465: owa_util.mime_header('text/html', FALSE);

2461: -- set it to expire immediately.
2462: -- However, because of a WebServer bug,
2463: -- We are resetting it to -1 for now.
2464:
2465: owa_util.mime_header('text/html', FALSE);
2466:
2467: sendsessioncookie(-1);
2468:
2469: owa_util.http_header_close;

Line 2469: owa_util.http_header_close;

2465: owa_util.mime_header('text/html', FALSE);
2466:
2467: sendsessioncookie(-1);
2468:
2469: owa_util.http_header_close;
2470: end if;
2471:
2472: end;
2473:

Line 3340: c_browser := owa_util.get_cgi_env('HTTP_USER_AGENT');

3336: -- l_secure := '';
3337: --end if;
3338:
3339: -- bug 1688982
3340: c_browser := owa_util.get_cgi_env('HTTP_USER_AGENT');
3341:
3342: if FND_WEB_CONFIG.PROTOCOL = 'https:'
3343: then
3344: --if (instr(c_browser, 'Mac_PowerPC') = 36 )

Line 3505: l_server_name := owa_util.get_cgi_env('SERVER_NAME'); -- should APPS_WEB_AGENT PROFILE BE USED?

3501: from ICX_PARAMETERS;
3502: END IF;
3503:
3504: if (l_session_cookie_domain is null OR upper(l_session_cookie_domain) = 'DOMAIN') then
3505: l_server_name := owa_util.get_cgi_env('SERVER_NAME'); -- should APPS_WEB_AGENT PROFILE BE USED?
3506: l_domain_count := instr(l_server_name,'.',-1,2);
3507: if l_domain_count > 0
3508: then
3509: l_domain_count := instr(l_server_name,'.',1,1);

Line 3538: l_server_name := owa_util.get_cgi_env('SERVER_NAME');

3534: l_domain_count := instr(l_session_cookie_domain, '.',-1,2);
3535: if l_domain_count > 0
3536: then
3537: --check the security.
3538: l_server_name := owa_util.get_cgi_env('SERVER_NAME');
3539: if(instr(l_server_name, l_session_cookie_domain) = 0)
3540: then
3541: l_session_cookie_domain := '';
3542: end if;

Line 4129: owa_util.mime_header('text/html', FALSE);

4125: when OTHERS then
4126: RETURN -1;
4127: END;
4128:
4129: owa_util.mime_header('text/html', FALSE);
4130: sendsessioncookie(l_session_id);
4131: owa_util.http_header_close;
4132: --htp.p('testing????');
4133: RETURN 1;

Line 4131: owa_util.http_header_close;

4127: END;
4128:
4129: owa_util.mime_header('text/html', FALSE);
4130: sendsessioncookie(l_session_id);
4131: owa_util.http_header_close;
4132: --htp.p('testing????');
4133: RETURN 1;
4134:
4135: else