Question

IN
Last activity: 6 Feb 2018 7:54 EST
We have HTML JavaScript Response Code around 35,000 Characters in pega we can Handle.
We are using below HTML Script in pega, It is accepting below 5,000 Characters.
var Result=document.getElementById("signData").value;
var oSafeURL = new SafeURL();
oSafeURL.put("pyActivity","---------------------");
oSafeURL.put("OutputData", Result);
var callback = {
success: function (oResponse) {
alert("success");
},
failure: function (oResponse) {
alert("activity call failed");
}
}
pega.u.d.asyncRequest('POST', oSafeURL, callback);
Any one can suggest ASAP we struck here.
Thanks & Regards
Satish Kumar