DBA Data[Home] [Help]

APPS.PMT_UTIL dependencies on UTL_HTTP

Line 148: l_html := utl_http.request(l_url);

144:
145: /*
146: Send http request to the payment server.
147: */
148: l_html := utl_http.request(l_url);
149: if debug then
150: htp.print(l_html);
151: end if;
152:

Line 277: l_html := utl_http.request(l_url);

273:
274: /*
275: Send HTTP request.
276: */
277: l_html := utl_http.request(l_url);
278: if (debug) then
279: htp.print(l_html);
280: end if;
281:

Line 362: l_html := utl_http.request(l_url);

358:
359: /*
360: Send HTTP request to payment server
361: */
362: l_html := utl_http.request(l_url);
363:
364:
365: /*
366: Parse the resulting HTML page.

Line 465: l_html := utl_http.request(l_url);

461: l_url := replace(l_url, ' ', '+');
462: if debug then
463: htp.print(l_url);
464: end if;
465: l_html := utl_http.request(l_url);
466: if debug then
467: htp.print(l_html);
468: end if;
469: unpack_results(l_html, l_names, l_values);

Line 563: l_html := utl_http.request(l_url);

559:
560: /*
561: Send HTTP request to payment server.
562: */
563: l_html := utl_http.request(l_url);
564:
565: if (debug) then
566: htp.print(l_html);
567: end if;

Line 663: l_html:=utl_http.request(l_url);

659: l_url := replace(l_url, ' ', '+');
660: if debug then
661: htp.print(l_url);
662: end if;
663: l_html:=utl_http.request(l_url);
664: if debug then
665: htp.print(l_html);
666: end if;
667: unpack_results(l_html, l_names, l_values);

Line 752: l_html := utl_http.request(l_url);

748:
749: /*
750: Send HTTP request URL to payment server.
751: */
752: l_html := utl_http.request(l_url);
753:
754:
755: /*
756: Parse resulting HTML page to name-value pair table.

Line 848: l_html:=utl_http.request(l_url);

844: for i in 1..inparam.OapfBatchSequenceNum.COUNT loop
845: l_url := l_url||'OapfBatchSequenceNum-'||TO_CHAR(i)||'='||inparam.OapfBatchSequenceNum(i)||'&';
846: end loop;
847: l_url := replace(l_url, ' ', '+');
848: l_html:=utl_http.request(l_url);
849: unpack_results(l_html, l_names, l_values);
850: for i in 1..l_names.COUNT loop
851: if l_names(i)='OapfStatus' then
852: summary.OapfStatus := l_values(i);

Line 926: l_html := utl_http.request(l_url);

922: l_url := replace(l_url,' ','+');
923:
924:
925: /* Send HTTP URL request to payment server */
926: l_html := utl_http.request(l_url);
927:
928: /*
929: Parse resulting HTML page.
930: */

Line 986: l_html := utl_http.request(l_url);

982:
983: /*
984: Send HTTP URL request to the payment server.
985: */
986: l_html := utl_http.request(l_url);
987:
988:
989: /*
990: Parse resulting HTML page.

Line 1113: l_html := utl_http.request(l_url);

1109: if debug then
1110: htp.print(l_url);
1111: end if;
1112: /* Send HTTP request */
1113: l_html := utl_http.request(l_url);
1114:
1115: if debug then
1116: htp.print(l_html);
1117: end if;

Line 1232: l_html := utl_http.request(l_url);

1228: l_url := replace(l_url,' ','+');
1229:
1230:
1231: /* Send HTTP request */
1232: l_html := utl_http.request(l_url);
1233:
1234: /* Parse resulting HTML page */
1235: unpack_results(l_html,l_names,l_values);
1236: