DBA Data[Home] [Help]

APPS.IBY_PAYMENT_ADAPTER_PUB dependencies on UTL_HTTP

Line 491: * value to set the UTL_HTTP timeout. If not set

487: * Get the network timeout setting from the profile
488: * option 'IBY: Network Timeout'.
489: *
490: * If this profile option is set, we will use this
491: * value to set the UTL_HTTP timeout. If not set
492: * the UTL_HTTP call will timeout after 60 seconds
493: * by default.
494: */
495: iby_utility_pvt.get_property('IBY_NETWORK_TIMEOUT', l_timeout);

Line 492: * the UTL_HTTP call will timeout after 60 seconds

488: * option 'IBY: Network Timeout'.
489: *
490: * If this profile option is set, we will use this
491: * value to set the UTL_HTTP timeout. If not set
492: * the UTL_HTTP call will timeout after 60 seconds
493: * by default.
494: */
495: iby_utility_pvt.get_property('IBY_NETWORK_TIMEOUT', l_timeout);
496:

Line 521: UTL_HTTP.SET_TRANSFER_TIMEOUT(l_num_val);

517: IF (l_num_val < 60) THEN
518: l_num_val := 60;
519: END IF;
520:
521: UTL_HTTP.SET_TRANSFER_TIMEOUT(l_num_val);
522:
523: iby_debug_pub.add(debug_msg => 'UTL_HTTP timeout set to '
524: || l_num_val || ' seconds.',
525: debug_level => FND_LOG.LEVEL_STATEMENT,

Line 523: iby_debug_pub.add(debug_msg => 'UTL_HTTP timeout set to '

519: END IF;
520:
521: UTL_HTTP.SET_TRANSFER_TIMEOUT(l_num_val);
522:
523: iby_debug_pub.add(debug_msg => 'UTL_HTTP timeout set to '
524: || l_num_val || ' seconds.',
525: debug_level => FND_LOG.LEVEL_STATEMENT,
526: module => G_DEBUG_MODULE || '.send_request');
527:

Line 587: WHEN UTL_HTTP.REQUEST_FAILED THEN

583:
584: --dbms_output.put_line('Input url = '|| x_url);
585:
586: EXCEPTION
587: WHEN UTL_HTTP.REQUEST_FAILED THEN
588:
589: --FND_MSG_PUB.Add_Exc_Msg(p_error_text => SQLCODE||':-:'||SQLERRM);
590: FND_MESSAGE.SET_NAME('IBY', 'IBY_0001');
591: FND_MSG_PUB.Add;

Line 893: --l_html := UTL_HTTP.REQUEST(l_url);

889:
890: --show_input_debug(l_url);
891:
892: -- Send http request to the payment server
893: --l_html := UTL_HTTP.REQUEST(l_url);
894: --dbms_output.put_line('send request ');
895: --dbms_output.put_line('l_url is:'||substr(l_url,1, 50));
896:
897: -- dbms_output.put_line('l_html is:'||substr(l_html, 1, 50));

Line 1306: --l_html := UTL_HTTP.REQUEST(l_url);

1302: --l_url := REPLACE(l_url,' ','+');
1303:
1304:
1305: -- Send http request to the payment server.
1306: --l_html := UTL_HTTP.REQUEST(l_url);
1307: SEND_REQUEST(l_url, l_html);
1308:
1309: -- show_output_debug(l_html);
1310:

Line 1542: --l_html := UTL_HTTP.REQUEST(l_url);

1538:
1539: --show_input_debug(l_url);
1540:
1541: -- Send http request to the payment server.
1542: --l_html := UTL_HTTP.REQUEST(l_url);
1543: SEND_REQUEST(l_url, l_html);
1544:
1545: --show_output_debug(l_html);
1546:

Line 1800: -- l_html := UTL_HTTP.REQUEST(l_url);

1796:
1797: --show_input_debug(l_url);
1798:
1799: -- Send http request to the payment server.
1800: -- l_html := UTL_HTTP.REQUEST(l_url);
1801: SEND_REQUEST(l_url, l_html);
1802: --show_output_debug(l_html);
1803:
1804: -- Unpack the results

Line 2088: --l_html := UTL_HTTP.REQUEST(l_url);

2084:
2085: --show_input_debug(l_url);
2086: --dbms_output.put_line(l_url);
2087: -- Send HTTP request to ipayment servlet
2088: --l_html := UTL_HTTP.REQUEST(l_url);
2089: SEND_REQUEST(l_url, l_html);
2090:
2091: --dbms_output.put_line(l_html);
2092:

Line 2338: -- l_html := UTL_HTTP.REQUEST(l_url);

2334: -- ^^^Replace blank characters with + sign.^^^
2335: --l_url := REPLACE(l_url,' ','+');
2336:
2337: -- Send HTTP request to ipayment servlet
2338: -- l_html := UTL_HTTP.REQUEST(l_url);
2339: SEND_REQUEST(l_url, l_html);
2340:
2341: -- Parse the resulting HTML page
2342: UNPACK_RESULTS_URL(l_html,l_names,l_values, l_status, l_errcode, l_errmessage);

Line 2580: --dbms_output.put_line('before utl_http call');

2576: --
2577: -- ^^^ Replace blank characters with + sign. ^^^
2578: -- l_url := REPLACE(l_url,' ','+');
2579:
2580: --dbms_output.put_line('before utl_http call');
2581: --show_input_debug(l_url);
2582:
2583: -- Send HTTP request to ipayment servlet
2584: -- l_html := UTL_HTTP.REQUEST(l_url);

Line 2584: -- l_html := UTL_HTTP.REQUEST(l_url);

2580: --dbms_output.put_line('before utl_http call');
2581: --show_input_debug(l_url);
2582:
2583: -- Send HTTP request to ipayment servlet
2584: -- l_html := UTL_HTTP.REQUEST(l_url);
2585: SEND_REQUEST(l_url, l_html);
2586:
2587: --dbms_output.put_line('after utl_http call');
2588: --show_output_debug(l_html);

Line 2587: --dbms_output.put_line('after utl_http call');

2583: -- Send HTTP request to ipayment servlet
2584: -- l_html := UTL_HTTP.REQUEST(l_url);
2585: SEND_REQUEST(l_url, l_html);
2586:
2587: --dbms_output.put_line('after utl_http call');
2588: --show_output_debug(l_html);
2589:
2590: -- Parse the resulting HTML page
2591: UNPACK_RESULTS_URL(l_html,l_names,l_values, l_status, l_errcode, l_errmessage);

Line 2899: -- l_html := UTL_HTTP.REQUEST(l_url);

2895: -- l_url := REPLACE(l_url,' ','+');
2896: --show_input_debug(l_url);
2897:
2898: -- Send HTTP request to ipayment servlet
2899: -- l_html := UTL_HTTP.REQUEST(l_url);
2900: SEND_REQUEST(l_url, l_html);
2901:
2902: --show_output_debug(l_html);
2903:

Line 3328: --dbms_output.put_line('before utl_http call');

3324: --
3325: -- ^^^^ Replace blank characters with + sign. ^^^
3326: -- l_url := REPLACE(l_url,' ','+');
3327:
3328: --dbms_output.put_line('before utl_http call');
3329: --show_input_debug(l_url);
3330:
3331: -- Send http request to the payment server.
3332: -- l_html := UTL_HTTP.REQUEST(l_url);

Line 3332: -- l_html := UTL_HTTP.REQUEST(l_url);

3328: --dbms_output.put_line('before utl_http call');
3329: --show_input_debug(l_url);
3330:
3331: -- Send http request to the payment server.
3332: -- l_html := UTL_HTTP.REQUEST(l_url);
3333: SEND_REQUEST(l_url, l_html);
3334:
3335: --dbms_output.put_line('after utl_http call');
3336: --show_output_debug(l_html);

Line 3335: --dbms_output.put_line('after utl_http call');

3331: -- Send http request to the payment server.
3332: -- l_html := UTL_HTTP.REQUEST(l_url);
3333: SEND_REQUEST(l_url, l_html);
3334:
3335: --dbms_output.put_line('after utl_http call');
3336: --show_output_debug(l_html);
3337:
3338: -- Unpack the results
3339: UNPACK_RESULTS_URL(l_html,l_names,l_values, l_status, l_errcode, l_errmessage);

Line 3635: -- l_html := UTL_HTTP.REQUEST(l_url);

3631:
3632: --show_input_debug(l_url);
3633:
3634: -- Send http request to the payment server.
3635: -- l_html := UTL_HTTP.REQUEST(l_url);
3636: SEND_REQUEST(l_url, l_html);
3637:
3638: --show_output_debug(l_html);
3639:

Line 3988: --l_html := UTL_HTTP.REQUEST(l_url);

3984:
3985: -- show_input_debug(l_url);
3986:
3987: -- Send http request to the payment server
3988: --l_html := UTL_HTTP.REQUEST(l_url);
3989: SEND_REQUEST(l_url, l_html);
3990:
3991:
3992: -- show_output_debug(l_html);

Line 4214: --l_html := UTL_HTTP.REQUEST(l_url);

4210:
4211: --show_input_debug(l_url);
4212:
4213: -- Send http request to the payment server
4214: --l_html := UTL_HTTP.REQUEST(l_url);
4215: SEND_REQUEST(l_url, l_html);
4216:
4217:
4218: -- show_output_debug(l_html);