Introduction
ASP.NET SignalR is ASP.NET open source library on top of .NET framework for building real–time web applications. It provides different Transport mechanism (WebSockets, long Polling, Server Side Events and Forever Frame) and Communication modes (Hub and Persistent Connection).
When a Hub Connection mode is used, then by default ASP.NET SignalR translates the Pascal naming of method names on the server side (e.g. MethodName
) to a camel case (e.g. methodName
). It takes the declared class names in hubs and applies camel casing to them to generate the hubs proxy. If these changes are not considered on the client side, then the application will not function.
The SignalR provides the CustomHub names by means of which no camel casing convention is done in the hubs proxy
Using the code
The below sample code demonstrate the usage of HubName attribute and HubMethodName attribute to avoid camel casing for the hub proxies. It is a simple chat application where multiple clients(browsers when running locally) can communicate with each other.
Steps:
- Open Visual Studio 2013
- Create a new blank web application using Visual Studio 2013. Name the application as SignalRDemo
- If the application do not contains reference to SignalR library, then add the reference from Nuget Package manager.
- Add a new SignalR Hub class(v2) item to the project. Name it as CustomHubName.cs
- Replace the content of the CustomHubName.cs class with the below code.
using System;
using System.Web;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
namespace SignalRDemo
{
[HubName("CustomHubNewName")]
public class CustomHubName : Hub
{
[HubMethodName("CustomSendMethod")]
public void Send(string name, string message)
{
Clients.All.broadcastMessage(name, message);
}
}
}
- Add a new HTML Page to the project. Name it as CustomHubNameDemo.html. Set the page as start up page.
- Replace the content of the HTML page with the below code
Sample HTML page
<!DOCTYPE html>
<html>
<head>
<title>SignalR Simple Chat using Custom Hub Name</title>
<style type="text/css">
.container {
background-color: #99CCFF;
border: thick solid #808080;
padding: 20px;
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<input type="text" id="message" />
<input type="button" id="sendmessage" value="Send" />
<input type="hidden" id="displayname" />
<ul id="discussion"></ul>
</div>
-->
-->
<script src="Scripts/jquery-1.10.2.min.js"></script>
-->
<script src="Scripts/jquery.signalR-2.0.0.min.js"></script>
-->
<script src="signalr/hubs"></script>
-->
<script type="text/javascript">
$(function () {
var customHubChat = $.connection.CustomHubNewName;
customHubChat.client.broadcastMessage = function (name, message) {
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div />').text(message).html();
$('#discussion').append('<li><strong>' + encodedName
+ '</strong>: ' + encodedMsg + '</li>');
};
$('#displayname').val(prompt('Enter your name:', ''));
$('#message').focus();
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
customHubChat.server.CustomSendMethod($('#displayname').val(), $('#message').val());
$('#message').val('').focus();
});
});
});
</script>
</body>
</html>
- Run the application.
The application will be executed succesfully.
Points of Interest
If the HubName
and HubMethodName
attributes are removed from the Hub Class and executed, then the application will fail.