DBA Data[Home] [Help]

APPS.WSH_U_TRACK dependencies on UTL_HTTP

Line 75: l_output_data utl_http.html_pieces;

71: l_request_in EnhancedTrackInRec;
72:
73: L_INPUT_STR VARCHAR2(2000);
74: L_OUTPUT_STR VARCHAR2(10000);
75: l_output_data utl_http.html_pieces;
76:
77: L_Track_Message VARCHAR2(500);
78:
79: L_Content_Type VARCHAR2(200);

Line 325: l_output_data := utl_http.request_pieces(L_INPUT_STR,100,L_INTERNET_PROXY);

321: end if;
322:
323: -- send request to UPS site
324: if L_INTERNET_PROXY is not NULL then
325: l_output_data := utl_http.request_pieces(L_INPUT_STR,100,L_INTERNET_PROXY);
326: else
327: l_output_data := utl_http.request_pieces(L_INPUT_STR,100);
328: end if;
329: -- when no response is received from a request to a given URL

Line 327: l_output_data := utl_http.request_pieces(L_INPUT_STR,100);

323: -- send request to UPS site
324: if L_INTERNET_PROXY is not NULL then
325: l_output_data := utl_http.request_pieces(L_INPUT_STR,100,L_INTERNET_PROXY);
326: else
327: l_output_data := utl_http.request_pieces(L_INPUT_STR,100);
328: end if;
329: -- when no response is received from a request to a given URL
330: -- then a formatted HTML error message may be returned, it contains the
331: -- following error message

Line 1231: -- this exception is produced by UTL_HTTP.REQUEST_PIECES

1227: else
1228: x_msg_data := l_msg_summary;
1229: end if;
1230:
1231: -- this exception is produced by UTL_HTTP.REQUEST_PIECES
1232: -- The http call fails(for example, bacause of failure of the HTTP
1233: -- daemon, or bacause the argument to REQUEST_PIECES cannot be interpreted
1234: -- as a URL because it is NULL or has non-HTTP syntax)
1235: --

Line 1254: -- this exception is produced by UTL_HTTP.REQUEST_PIECES

1250: else
1251: x_msg_data := l_msg_summary;
1252: end if;
1253:
1254: -- this exception is produced by UTL_HTTP.REQUEST_PIECES
1255: -- Initialization of the HTTP callout subsystem failed
1256: -- for invironmental reasons such as lack of available memory
1257: --
1258: -- Debug Statements