Skip to Main Content

E-Business Suite

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

OAF - JDev 10.1.3 Is it possible to send HTTP header keys

G0684Mar 6 2023 — edited Mar 9 2023

Hi,

I have a custom OAF application built from where external users can view their invoices and pay. When they choose to pay, I navigate them to a third party payment site with few parameters like amount and ID etc as parameters as shown below.

String url = pageContext.getProfile("XXX_PAY_SITE_URL");
String compUrl = url+"?productId="+prodId+"&paymentAmount="+totamount.toString()+"UniqID="+ID; 
pageContext.setForwardURL(compUrl, null, OAWebBeanConstants.KEEP_MENU_CONTEXT, null, null,     
                    true, OAWebBeanConstants.ADD_BREAD_CRUMB_YES, OAWebBeanConstants.IGNORE_MESSAGES);

It was working fine for few years now. And we have a change of payment vendor now and they are insisting on sending a http header with a constant key in it.

Is it possible to do it from OAF controller? Is there a way to embed or add the key name and key value as part of URL's http header?

Please help

Thank you!

Comments
Post Details
Added on Mar 6 2023
0 comments
200 views