Saturday 9 February 2013

SignalR


Hai all
signalR.
What is it
Its using for call serverside methode in javascript(Its very 

easy than webmethod) and its perfect than webmethod. 

Now i  tried one sample code for

Get it on NuGet!

Install-Package Microsoft.AspNet.SignalR -pre

then add one html page
<!DOCTYPE html>
<html>
<head>
<title>SignalR Simple Chat</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 references. -->
<script src="Scripts/jquery-1.6.4.min.js" type="text/javascript"></script>
<!--Reference the jQuery library. -->
<script src="Scripts/jquery.signalR-1.0.0-rc2.js" type="text/javascript"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="/signalr/hubs"></script>
<!--Add script to update the page and send messages.--> 
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub. 
var chat = $.connection.chatHub;
// Create a function that the hub can call to broadcast messages.
chat.client.broadcastMessage = function (name, message) {
// Html encode display name and message. 
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div />').text(message).html();
// Add the message to the page. 
$('#discussion').append('<li><strong>' + encodedName
+ '</strong>:&nbsp;&nbsp;' + encodedMsg + '</li>');
};
// Get the user name and store it to prepend to messages.
$('#displayname').val(prompt('Enter your name:', ''));
// Set initial focus to message input box. 
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub. 
chat.server.Send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment. 
$('#message').val('').focus();
});
});
});
</script>
</body>
</html>
then add global application and copy past the code 

RouteTable.Routes.MapHubs(); in our app start
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Web.Routing;
using Microsoft.AspNet.SignalR;

namespace ChatSignarR
{
public class Global : System.Web.HttpApplication
{

protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.MapHubs();
}
protected void Session_Start(object sender, EventArgs e)
{

}
protected void Application_BeginRequest(object sender, EventArgs e)
{

}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{

}
protected void Application_Error(object sender, EventArgs e)
{

}
protected void Session_End(object sender, EventArgs e)
{

}
protected void Application_End(object sender, EventArgs e)
{

}
}
}
Use one class and try  for below 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.AspNet.SignalR;

namespace ChatSignarR
{
public class ChatHub:Hub
{
public void Send(string name, string message)
{
// Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(name, message);
}
}
}


5 comments:

If any doubt?then please comment in my post

How to reduce angular CLI build time

 Index: ----- I am using angular cli - 7 and I am going to tell how to reduce the build time as per my knowledge. Problem: -------- Now the ...