I am planning to create a chat application, and I've read that SignalR is one of the best technologies to apply.
I've seen examples of it, but they only have a single chat room.
I want to have multiple chat rooms. The user will just choose one of those chat rooms.
Although I'm a beginner, I think to create a single chat room in SignalR is by this:
<script type="text/javascript">
$(function () {
var connection = $.connection.communicator;
connection.receive = function (from, msg) {
$("#chatWindow").append("<li>" + from + ": " + msg + "</li>");
};
$.connection.hub.start();
$("#btnSend").click(function () {
connection.broadcast($("#txtName").val(), $("#txtMsg").val());
});
});
</script>
var connection = single chat room (I'm not sure)
So if I have many connections (for example, connection1, connection2, connection3....) I can have multiple chat rooms?
Once again, I am not sure if this is correct... Please help me on how to implement multiple chat rooms...
(PS: I have seen JABBR, but its code is making my nose bleed. Can you provide simple examples, please?)
See Question&Answers more detail:os