我正在使用SignalR的应用程序。
集线器放在运行Windows Server 2012和IIS 8.一台服务器上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的工作?
谢谢。