DBA Data[Home] [Help]

APPS.EDR_XDOC_UTIL_PKG dependencies on UTL_HTTP

Line 333: -- Call UTL_HTTP using EDR_XDOC_UTIL_PKG.REQUEST_HTTP package wrapper

329: -- Bug 3761813 : END
330:
331: --These will be picked up when the AppsContext is initialized in the Java Layer.
332:
333: -- Call UTL_HTTP using EDR_XDOC_UTIL_PKG.REQUEST_HTTP package wrapper
334: l_http_response := EDR_XDOC_UTIL_PKG.REQUEST_HTTP( p_request_url => l_url);
335:
336: if (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
337: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,l_module_name,

Line 345: --Check if UTL_HTTP request returned with JSP Not found message.

341: --Bug 5256904: Start
342: DELETE_TEMP_PARAMS(P_ERECORD_ID);
343: --bug 5256904: End
344:
345: --Check if UTL_HTTP request returned with JSP Not found message.
346: IF ((INSTR(SUBSTR(L_HTTP_RESPONSE,1,1024), 'FileNotFoundException', 1) > 0)
347: OR (INSTR(SUBSTR(L_HTTP_RESPONSE,1,1024), '404 Not Found',1) > 0))
348: THEN
349: RAISE L_PAGENOTFOUND;

Line 625: -- EDR_XDOC_UTIL_PKG.REQUEST_HTTP provides a wrapper over UTL_HTTP calls

621: End GET_NTF_MESSAGE_BODY;
622:
623: -- Bug 3950047 : Start
624:
625: -- EDR_XDOC_UTIL_PKG.REQUEST_HTTP provides a wrapper over UTL_HTTP calls
626: -- It performs all the checks required on URL before calling UTL_HTTP.REQUEST
627: -- This FUNCTION follows PLSQL API Call conventions.
628:
629: -- p_request_url - Request URL over which UTL_HTTP call is to be made.

Line 626: -- It performs all the checks required on URL before calling UTL_HTTP.REQUEST

622:
623: -- Bug 3950047 : Start
624:
625: -- EDR_XDOC_UTIL_PKG.REQUEST_HTTP provides a wrapper over UTL_HTTP calls
626: -- It performs all the checks required on URL before calling UTL_HTTP.REQUEST
627: -- This FUNCTION follows PLSQL API Call conventions.
628:
629: -- p_request_url - Request URL over which UTL_HTTP call is to be made.
630: -- returns varchar2 - HTTP_RESPONSE returned from UTL_HTTP.REQUEST

Line 629: -- p_request_url - Request URL over which UTL_HTTP call is to be made.

625: -- EDR_XDOC_UTIL_PKG.REQUEST_HTTP provides a wrapper over UTL_HTTP calls
626: -- It performs all the checks required on URL before calling UTL_HTTP.REQUEST
627: -- This FUNCTION follows PLSQL API Call conventions.
628:
629: -- p_request_url - Request URL over which UTL_HTTP call is to be made.
630: -- returns varchar2 - HTTP_RESPONSE returned from UTL_HTTP.REQUEST
631:
632: -- throws - profile_error which must be caught in calling procedure.
633:

Line 630: -- returns varchar2 - HTTP_RESPONSE returned from UTL_HTTP.REQUEST

626: -- It performs all the checks required on URL before calling UTL_HTTP.REQUEST
627: -- This FUNCTION follows PLSQL API Call conventions.
628:
629: -- p_request_url - Request URL over which UTL_HTTP call is to be made.
630: -- returns varchar2 - HTTP_RESPONSE returned from UTL_HTTP.REQUEST
631:
632: -- throws - profile_error which must be caught in calling procedure.
633:
634: function REQUEST_HTTP

Line 661: -- Before UTL_HTTP call.

657: raise profile_error;
658: end if;
659:
660: -- Append file: in the beginning and set the wallet directory
661: -- Before UTL_HTTP call.
662:
663: l_wallet := 'file:' || l_wallet;
664: utl_http.set_wallet(l_wallet);
665: end if;

Line 664: utl_http.set_wallet(l_wallet);

660: -- Append file: in the beginning and set the wallet directory
661: -- Before UTL_HTTP call.
662:
663: l_wallet := 'file:' || l_wallet;
664: utl_http.set_wallet(l_wallet);
665: end if;
666: -- Bug : 5170875 : start
667: if (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
668: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,l_module_name,

Line 672: l_http_response := utl_http.request( URL=> p_request_url);

668: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,l_module_name,
669: 'HTTP Request to JSP: '||p_request_url);
670: end if;
671: -- Bug : 5170875 : End
672: l_http_response := utl_http.request( URL=> p_request_url);
673: return l_http_response;
674: END REQUEST_HTTP;
675:
676: -- Bug 3950047 : End