Hello Team,
I am try to set cookie on before send event of service like this:
LogonService.execute({
xhrFields: {
withCredentials: true
},
,beforeSend: function(jqXHR) { jqXHR.setRequestHeader("Cookie","demoId=296ea64a-4391-4fd9-b8c3-a48a006144c6");
}
Its working fine on IOS device. It overrides my cookie and works accordingly but on android device it is not working. It does not override my cookie which I have set.
Can you please suggest any solution?