SignalR MVC 5 Websocket pas d'informations d'Identification valides

j'essaie d'utiliser SignalR en Application MVC. Il fonctionne bien, mais j'obtiens l'Erreur suivante dans la console Chromée

 WebSocket connection to 'ws://localhost:18245/signalr/connect?transport=webSockets&clientProtocol=1.4&connectionToken=bNDGLnbSQThqY%2FSjo1bt
8%2FL45Xs22BDs2VcY8O7HIkJdDaUJ4ftIc54av%2BELjr27ekHUiTYWgFMfG6o7RaZwhf
fpXavzWQ1jvkaxGm5rI%2BWtK7j0g1eQC2aOYP366WmRQLXCiYJfsm4EbwX6T8n2Aw
%3D%3D&connectionData=%5B%7B%22name%22%3A%22importerhub%
22%7D%5D&tid=9' failed: HTTP Authentication failed; no valid credentials available 

Le plus drôle, c'est que la méthode jquery que je peux appeler le Contrôleur sur le Hub fonctionne bien.

jQuery:

 $(function () {
            //Initialize the connection to the server
            var importerHub = $.connection.importerHub;

            //Preparing a client side function
            //called sendMessage that will be called from the server side
            importerHub.client.sendMessage = function (message) {
                showOrUpdateSuccessMessage(message);
            };
            $.connection.hub.start();
        });

Contrôleur:

var hubContext = GlobalHost.ConnectionManager.GetHubContext<ImporterHub>();
            hubContext.Clients.All.sendMessage("All operations complete");

Que j'utilise .Net v4.5.1, SignalR v2.1.2.0 et IIS 8.5 avec l'Authentification Windows.

Comment puis-je corriger cette erreur?

InformationsquelleAutor Konobi | 2014-11-11