Ok I hope i can explain this well. In visual studio, i used signalrV2 to try to make a textarea update all the other clients textarea as well.
$("#ta").bind("input copy paste", function () {
hubProxy.server.update($("#ta").val());
});
Meaning if i type "ABC" in one textarea, all the other browsers textarea contains "ABC". I have already done this in visual studio and its working even if i open 10 tabs, all 10 tabs are synchronised.
But the moment i publish it to IIS, heres what happens. I open 3 tabs. In the 1st tab i type "abc", only the 2nd tab gets updated. The moment i close the first tab, that is when the third tab's textarea gets updated with "abc".
So my problem is that why are only a max of 2 tabs working together to update each other at any one time in IIS?
EDIT: Then i tried with 2 hand phones and a PC. Same problem. Only one hand phone and a PC can sync with each other. The moment i close my PC tab. Both phones synced with each other. How do i solve this? This cant be a browser limit right? I am using 3 different devices. Sorry for bad English.