Hi Gadi,
I have a quick question.
As of now we are using emulation applications by opening window.open by passing required params to the emulation app as query strings. Please see below:
var url=“https://servername:port/emulation_template_fdr/index.jsp?arg1=”+arg1+“&arg2=”+arg2+“&arg3=”+arg3+“&arg4=”+arg4+“&arg5=”+arg5;
window.open(url,“_blank”,“”);
Since the args that we pass is a PCI sensitive data, we have been asked to pass the args to emulation app using post method so that args will not be displayed in browser. Would the below same code work for post parameters also? We have changed our code to post method, however we are not seeing the args are being passed using the below code. Could you please help?
String logonId = getTagsAccesor().getTagContent(“logonid”);
String password = getTagsAccesor().getTagContent(“password”);
String casn = getTagsAccesor().getTagContent(“casn”);
String fdsn = getTagsAccesor().getTagContent(“fdsn”);
String id="cd1 "+getTagsAccesor().getTagContent(“cardholderid”);
#ApplinX#webMethods#Mainframe-Integration