DBA Data[Home] [Help]

APPS.IBY_PAYMENT_ADAPTER_PUB dependencies on IBY_NETUTILS_PVT

Line 108: x_values(i) := iby_netutils_pvt.decode_url_chars(x_values(i),l_local_nls,l_remote_nls);

104:
105: /*
106: IF ((l_remote_nls IS NOT NULL) AND (l_local_nls IS NOT NULL)) THEN
107: FOR i in 1..x_values.COUNT LOOP
108: x_values(i) := iby_netutils_pvt.decode_url_chars(x_values(i),l_local_nls,l_remote_nls);
109: END LOOP;
110: END IF;
111: */
112:

Line 200: iby_netutils_pvt.escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';

196: RAISE FND_API.G_EXC_ERROR;
197: ELSE
198: --Append this = to the input URL
199: p_url := p_url||p_name||'='||
200: iby_netutils_pvt.escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';
201: END IF;
202:
203: -- ??? who installed the exception catch below???
204: -- keep it for the time being as it allows a better error message, code

Line 209: WHEN iby_netutils_pvt.encoding_error THEN

205: -- to be returned than by aborting within PL/SQL
206: -- [jlebovi 11/29/2001]
207: EXCEPTION
208: /*
209: WHEN iby_netutils_pvt.encoding_error THEN
210: --
211: -- catch any of the conversion errors that may
212: -- have occured here
213: --

Line 260: iby_netutils_pvt.escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';

256: p_url := l_url;
257: ELSE
258: --Append this = to the input URL
259: p_url := p_url||p_name||'='||
260: iby_netutils_pvt.escape_url_chars(p_value,p_local_nls,p_remote_nls)||'&';
261: END IF;
262:
263: EXCEPTION
264: /*

Line 265: WHEN iby_netutils_pvt.encoding_error THEN

261: END IF;
262:
263: EXCEPTION
264: /*
265: WHEN iby_netutils_pvt.encoding_error THEN
266: --
267: -- catch any of the conversion errors that may
268: -- have occured here
269: --

Line 555: l_wallet_location := iby_netutils_pvt.path_to_url(l_wallet_location);

551: -- using a SSO password-less wallet
552: l_wallet_password := NULL;
553:
554: IF (NOT (TRIM(l_wallet_location) IS NULL)) THEN
555: l_wallet_location := iby_netutils_pvt.path_to_url(l_wallet_location);
556: END IF;
557:
558: iby_debug_pub.add(debug_msg => 'Input url = '|| cipher_url(x_url),
559: debug_level => FND_LOG.LEVEL_STATEMENT,

Line 576: IBY_NETUTILS_PVT.POST_REQUEST

572:
573: l_post_body := SUBSTR(x_url,l_index+1,length(x_url));
574: l_post_body := RTRIM(l_post_body,'&');
575:
576: IBY_NETUTILS_PVT.POST_REQUEST
577: ( SUBSTR(x_url,1,l_index-1), l_post_body, x_htmldoc );
578:
579:
580: iby_debug_pub.add(debug_msg => 'Exit',