5

There is only one problem, I am just getting a "Securty Waring" alert in IE 8 in my SignalR chat application while in HTTPS

enter image description here

I am using longpolling as transport type when in IE8. Its working fine in all other IE browers.

self.Connect = function () {
     hubConn.start({ transport: 'longPolling' }).done(function (result) {
                ///--
     }).fail(function (error) {
                ///--
         alert("error" + error);
     });
}

When I tried fiddler, the security warning appeared with a signalr ajax call as shown below.

enter image description here

Sreekumar P
  • 5,900
  • 11
  • 57
  • 82
  • Please add those details from forum.asp.net including the extra screenshots here so that the question here is complete. – amit_g Mar 20 '13 at 16:24
  • See the answer here on How to avoid security warning in IE when landing an HTTPS page? http://stackoverflow.com/a/2899212/1399964 – Elliot Wood Mar 29 '13 at 09:51

1 Answers1

1

Various possibilities of security warning in IE is explained in the below url

ie7-this-page-contains-both-secure-and-nonsecure-items

The problem was actually not with the signalr chat and i have detailed the cause of my issue in the url given below.

Security+warning+in+IE+version+8

Thanks guys for your support :)

Best,

Linto Sebastian

Shubh
  • 6,693
  • 9
  • 48
  • 83