DBA Data[Home] [Help]

APPS.IRC_XML_UTIL dependencies on UTL_HTTP

Line 163: retval:=UTL_HTTP.REQUEST(url => url

159: end if;
160: if (g_wallet_password is null) then
161: g_wallet_password:=fnd_preference.eget('#INTERNAL','WF_WEBSERVICES','EWALLETPWD', 'WFWS_PWD');
162: end if;
163: retval:=UTL_HTTP.REQUEST(url => url
164: ,proxy => l_proxy
165: ,wallet_path=>g_wallet_path
166: ,wallet_password=>g_wallet_password
167: );

Line 169: retval:=UTL_HTTP.REQUEST(url => url

165: ,wallet_path=>g_wallet_path
166: ,wallet_password=>g_wallet_password
167: );
168: else
169: retval:=UTL_HTTP.REQUEST(url => url
170: ,proxy => l_proxy
171: );
172: end if;
173: return retval;

Line 181: ,max_pieces number) return utl_http.html_pieces is

177: -- |------------------------< http_get_pieces >-----------------------------|
178: -- -------------------------------------------------------------------------
179: --
180: function http_get_pieces(url varchar2
181: ,max_pieces number) return utl_http.html_pieces is
182: --
183: retval utl_http.html_pieces;
184: l_proxy varchar2(255);
185: begin

Line 183: retval utl_http.html_pieces;

179: --
180: function http_get_pieces(url varchar2
181: ,max_pieces number) return utl_http.html_pieces is
182: --
183: retval utl_http.html_pieces;
184: l_proxy varchar2(255);
185: begin
186: utl_http.SET_BODY_CHARSET(fnd_profile.value('ICX_CLIENT_IANA_ENCODING'));
187: if(g_proxy is null) then

Line 186: utl_http.SET_BODY_CHARSET(fnd_profile.value('ICX_CLIENT_IANA_ENCODING'));

182: --
183: retval utl_http.html_pieces;
184: l_proxy varchar2(255);
185: begin
186: utl_http.SET_BODY_CHARSET(fnd_profile.value('ICX_CLIENT_IANA_ENCODING'));
187: if(g_proxy is null) then
188: g_proxy:=fnd_profile.value('WEB_PROXY_HOST');
189: end if;
190: if(g_proxy is not null) then

Line 200: retval:=UTL_HTTP.REQUEST_PIECES(url => url

196: end if;
197: if (g_wallet_password is null) then
198: g_wallet_password:=fnd_preference.eget('#INTERNAL','WF_WEBSERVICES','EWALLETPWD', 'WFWS_PWD');
199: end if;
200: retval:=UTL_HTTP.REQUEST_PIECES(url => url
201: ,max_pieces=>max_pieces
202: ,proxy => l_proxy
203: ,wallet_path=>g_wallet_path
204: ,wallet_password=>g_wallet_password

Line 207: retval:=UTL_HTTP.REQUEST_PIECES(url => url

203: ,wallet_path=>g_wallet_path
204: ,wallet_password=>g_wallet_password
205: );
206: else
207: retval:=UTL_HTTP.REQUEST_PIECES(url => url
208: ,max_pieces=>max_pieces
209: ,proxy => l_proxy
210: );
211: end if;