SignalRを使用してアプリケーションを作成しています。
ハブは、IIS8を搭載したWindowsServer2012を実行している1台のサーバーに配置されます。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を使用するには、サーバーで他の何かを有効にする必要がありますか?
ありがとう。