我正在使用 SignalR 制作应用程序。
集线器放置在一台运行带有 IIS 8 的 Windows Server 2012 的服务器上。 http://mentor.cloudapp.net/mass/rexona/previa/signalr/hubs。
客户在这里: http://massdeveloperstage.com/Rexona/Site/colombia/Previa/Match?matchId= 6F318A29-3400-444B-95D9-7EC41A7AD2D4
Signalr 设置如下所示:
var match;
    $(document).ready(function () {
        $.connection.hub.loging = true;
        match = $.connection.match;
    match.client.addMessage = function (message) {
        var vm = {
            avatar: message.ProfileImageLocation,
            content: message.Text,
            user: message.UserScreenName,
            obj: JSON.stringify(message)
        };
         alert(vm.obj);
   }
  $.connection.hub.url = 'http://mentor.cloudapp.net/mass/rexona/previa/signalr';
    $.connection.hub.start().done(function () {
        match.server.addToGroup("97-987-PP");
    }).fail(function () {
          //alert("fail!");
    });
一切都在 Chrome、FF、Opera 和 IE10 中完美运行,但是当使用 IE9 访问时,应用程序失败。
我在连接设置中遗漏了什么吗?我是否需要在服务器上启用其他功能才能使用 IE9?
谢谢。