DBA Data[Home] [Help]

APPS.IBY_PAYMENT_ADAPTER_PUB dependencies on IBY_NETUTILS_PVT

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

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

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

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

Line 213: WHEN iby_netutils_pvt.encoding_error THEN

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

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

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

Line 269: WHEN iby_netutils_pvt.encoding_error THEN

265: END IF;
266:
267: EXCEPTION
268: /*
269: WHEN iby_netutils_pvt.encoding_error THEN
270: --
271: -- catch any of the conversion errors that may
272: -- have occured here
273: --

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

585: -- using a SSO password-less wallet
586: l_wallet_password := NULL;
587:
588: IF (NOT (TRIM(l_wallet_location) IS NULL)) THEN
589: l_wallet_location := iby_netutils_pvt.path_to_url(l_wallet_location);
590: END IF;
591:
592: iby_debug_pub.add(debug_msg => 'Input url = '|| cipher_url(x_url),
593: debug_level => FND_LOG.LEVEL_STATEMENT,

Line 610: IBY_NETUTILS_PVT.POST_REQUEST

606:
607: l_post_body := SUBSTR(x_url,l_index+1,length(x_url));
608: l_post_body := RTRIM(l_post_body,'&');
609:
610: IBY_NETUTILS_PVT.POST_REQUEST
611: ( SUBSTR(x_url,1,l_index-1), l_post_body, x_htmldoc );
612:
613:
614: iby_debug_pub.add(debug_msg => 'Exit',