c# - SignalR HTTPS client -


using signalr 0.53 , self-hosting owin, able have https client connect non-https localhost port.

i have upgraded signalr 1.1.2.

i have enabled cross-domain have have non-https clients connecting successfully. however, seems https client blocked.

note: have use ie10. appears in console:

sec7111: https security compromised http://localhost:9100/signalr/hubs  

an alert "signalr: error during negotation request: undefined" displayed.

how can remedy this?

this standard mixed-mode connection blocking. when you're on page https, resources should https or else tricked sending data in clear though you're thinking you're on secure page. browser (ie @ least) protecting not allowing form of mixed-mode communication. if page https, signalr connections need https.


Comments