I am rendering report inside an iframe and their domains are not same. While rendering I am getting 'Access is denied' error in IE. Works fine in other browers.
Jquery version: 1.10.2 Signalr version: 2.1.2
Note: Tried by upgrading signalr to 2.2.2 also. It is not working.
//Signalr scripts goes here
<script>
$(document.ready(function () {
var response = $.connection.signalrHub;
response.client.connection = function () {
//connection
};
SJ.iwc.SignalR.start();
});
</script>
Solution tried:
$.connection.hub.start({ transport: ['webSockets', 'serverSentEvents', 'longPolling'] });
Tried by adding this inside document.ready
but not working.
Anyone faced this issue ? Is there is any work around for this ?