DBA Data[Home] [Help]

APPS.BSC_PORTLET_UTIL dependencies on UTL_HTTP

Line 424: ) RETURN utl_http.html_pieces IS

420:
421: FUNCTION request_html_pieces(
422: p_url IN VARCHAR2,
423: p_proxy IN VARCHAR2 DEFAULT NULL
424: ) RETURN utl_http.html_pieces IS
425: l_wallet_path VARCHAR2(2000);
426: l_wallet_password VARCHAR2(2000);
427: l_pieces utl_http.html_pieces;
428: BEGIN

Line 427: l_pieces utl_http.html_pieces;

423: p_proxy IN VARCHAR2 DEFAULT NULL
424: ) RETURN utl_http.html_pieces IS
425: l_wallet_path VARCHAR2(2000);
426: l_wallet_password VARCHAR2(2000);
427: l_pieces utl_http.html_pieces;
428: BEGIN
429: IF INSTR(UPPER(p_url), 'HTTPS://') > 0 THEN
430: --l_wallet_path := ''; --fnd_profile.value('BSC_WALLET_PATH');
431: --l_wallet_password := '';--fnd_profile.value('BSC_WALLET_PASSWORD');

Line 432: l_pieces := utl_http.request_pieces(

428: BEGIN
429: IF INSTR(UPPER(p_url), 'HTTPS://') > 0 THEN
430: --l_wallet_path := ''; --fnd_profile.value('BSC_WALLET_PATH');
431: --l_wallet_password := '';--fnd_profile.value('BSC_WALLET_PASSWORD');
432: l_pieces := utl_http.request_pieces(
433: url => p_url,
434: max_pieces => 32000,
435: proxy => p_proxy,
436: wallet_path => '',

Line 439: l_pieces := utl_http.request_pieces(

435: proxy => p_proxy,
436: wallet_path => '',
437: wallet_password => '');
438: ELSE
439: l_pieces := utl_http.request_pieces(
440: url => p_url,
441: max_pieces => 32000,
442: proxy => p_proxy);
443: END IF;

Line 472: FUNCTION re_align_html_pieces(src IN utl_http.html_pieces) RETURN

468: --==========================================================================
469:
470: ----------------------------------------------------------------------------
471: -- !!! Do not use in 9i !!!
472: FUNCTION re_align_html_pieces(src IN utl_http.html_pieces) RETURN
473: utl_http.html_pieces
474: AS
475: dst utl_http.html_pieces;
476: buf RAW(2000);

Line 473: utl_http.html_pieces

469:
470: ----------------------------------------------------------------------------
471: -- !!! Do not use in 9i !!!
472: FUNCTION re_align_html_pieces(src IN utl_http.html_pieces) RETURN
473: utl_http.html_pieces
474: AS
475: dst utl_http.html_pieces;
476: buf RAW(2000);
477: src_row PLS_INTEGER;

Line 475: dst utl_http.html_pieces;

471: -- !!! Do not use in 9i !!!
472: FUNCTION re_align_html_pieces(src IN utl_http.html_pieces) RETURN
473: utl_http.html_pieces
474: AS
475: dst utl_http.html_pieces;
476: buf RAW(2000);
477: src_row PLS_INTEGER;
478: src_pos PLS_INTEGER;
479: dst_row PLS_INTEGER;

Line 528: l_pieces utl_http.html_pieces;

524:
525: END;
526:
527: PROCEDURE test_https(url IN VARCHAR2) IS
528: l_pieces utl_http.html_pieces;
529: BEGIN
530: l_pieces := request_html_pieces('https://' || url || '/');
531: htp.p(l_pieces.count || ' pieces retreived.');
532: EXCEPTION