DBA Data[Home] [Help]

APPS.XDP_PROC_CTL dependencies on UTL_HTTP

Line 2157: l_Resp UTL_HTTP.HTML_PIECES;

2153: l_ActualStr varchar2(32767);
2154: l_LogCmd varchar2(32767);
2155:
2156:
2157: l_Resp UTL_HTTP.HTML_PIECES;
2158:
2159: x_progress varchar2(2000);
2160: begin
2161:

Line 2173: l_Resp := UTL_HTTP.Request_pieces(l_ActualStr);

2169: x_progress := 'In XDP_PROC_CTL.SEND_HTTP.FIND_REPLACE_PARAMS: Error when trying to get the value of parameters in: ' || SUBSTR(CmdStr, 1, 600) || ' Error: ' || SUBSTR(ErrStr, 1, 600);
2170: RAISE e_ParamValueException;
2171: end IF;
2172:
2173: l_Resp := UTL_HTTP.Request_pieces(l_ActualStr);
2174:
2175: Response := l_Resp(1);
2176:
2177: for i in 2..l_Resp.count LOOP

Line 2189: when UTL_HTTP.request_failed then

2185: end if;
2186: END LOOP;
2187:
2188: exception
2189: when UTL_HTTP.request_failed then
2190: ErrCode := -20050;
2191: ErrStr := 'Request Failed';
2192: sdp_internal_err_code := ErrCode;
2193: sdp_internal_err_str := ErrStr;

Line 2195: when UTL_HTTP.init_failed then

2191: ErrStr := 'Request Failed';
2192: sdp_internal_err_code := ErrCode;
2193: sdp_internal_err_str := ErrStr;
2194:
2195: when UTL_HTTP.init_failed then
2196: ErrCode := -20051;
2197: ErrStr := 'Initialization Failed';
2198: sdp_internal_err_code := ErrCode;
2199: sdp_internal_err_str := ErrStr;