I am using Iframes for my application.
When the payment poup comes up, I donot recieve any response from authorize none of the following:
successfulSave, cancel, transactResponse, resizeWindow
this function never gets invoked:
AuthorizeNetPopup.onReceiveCommunication = function (querystr) {
var params = parseQueryString(querystr);
alert(params);
switch (params["action"]) {
case "successfulSave":
AuthorizeNetPopup.closePopup();
break;
case "cancel":
AuthorizeNetPopup.closePopup();
break;
case "transactResponse":
debugger;
var response = params["response"];
//document.getElementById("token").value = response;
alert(response);
persistAgentTransaction(response);
AuthorizeNetPopup.closePopup();
break;
case "resizeWindow":
var w = parseInt(params["width"]);
var h = parseInt(params["height"]);
var ifrm = document.getElementById("iframeAuthorizeNet");
ifrm.style.width = w.toString() + "px";
ifrm.style.height = h.toString() + "px";
centerPopup();
break;
}
};check the screenshot of my payment screen here: https://ibb.co/mcx2Qdj
it keeps on saying processing, Nothing happens after that
08-11-2020 03:15 AM
Good information that have you share with us
11-06-2022
01:33 AM
- last edited on
11-06-2022
07:57 AM
by
Kh-SabW