SlideShare a Scribd company logo
Real-time web applications
with SignalR 2.0
Brendan Kowitz
brendan.kowitz@readify.nethttp://www.kowitz.net@brendankowitz
Agenda
Getting
started with
SignalR
Adding Real-
time updates
to an existing
app
Advanced scenarios
(Rich client, Performance and
scaling)
Why SignalR?
Why use SignalR?
What is SignalR?
http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DEV-B416
Getting started
SignalR Hosts
Host agnostic – run in asp.net or stand alone with self-host on
OWIN
Changes in 2.0 – more integration with OWIN, different hub
registrations
// no longer:RouteTable.Routes.MapHubs();
namespace MyWebApplication
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
}
Hubs and Connections
Connections – LOW LEVEL
Raw strings up and down
Broadcast to all clients, groups or individuals
Connection, reconnection and disconnection
semantics
Hubs – Bit higher level
Client-server and server-client
Automatic client proxy generation
Try it yourself:
What to include?
Real time web applications with SignalR (BNE .NET UG)
Adding SignalR to an
existing app
Agile Dashboard
Agile dashboard libraries
DurandalJS
Knockout
Postal
Toastr
Real time web applications with SignalR (BNE .NET UG)
Security?
Same as any other web application (browser will
respect auth cookies and HTTPS).
SignalR clients?
Clients for pretty much everybody.
.NET 4.5
SL5
Store apps
Phone apps
Portable apps
Xamarin
Rich client SignalR
Rich client SignalR –
how is it different?
CreateHubProxy
.On<Stock>
Real time web applications with SignalR (BNE .NET UG)
Agile dashboard…In Excel!!
Performance & Scale
Performance
Throughput
100,000s of message per second
Very low memory overhead
Scale
Fully async to optimise resource utilisation
1,000s of connections per server (concurrent)
Supports horizontal scaleout using pluggable message bus
backplane
Which are currently valid scale-out
options for SignalR?
a) SQL Server
b) Windows Azure Service Bus
c) ZeroMQ
d) Redis
e) Messaging Ferrets
http://animals.nationalgeographic.com/animals/mammals/
black-footed-ferret/
http://www.asp.net/signalr/overview/performance-and-
scaling/scaleout-in-signalr
How does it work?
Real time web applications with SignalR (BNE .NET UG)
What’s
next?
http://www.quickmeme.com/meme/35dm11/
Further watching
Building Real-time Applications with SignalR
http://channel9.msdn.com/Events/TechEd/NorthAmerica/201
4/DEV-B416
Microsoft ASP.NET SignalR: The Real-Time Web Made Simple
http://channel9.msdn.com/Events/TechEd/NorthAmerica/201
3/DEV-B302
Building Real-time Web Apps with ASP.NET SignalR
http://channel9.msdn.com/Events/Build/2012/3-034
Take-away
Getting started with SignalR
Adding Real-time updates to an existing app
Performance
Advanced scenarios
Get the source!
https://github.com/brendankowitz/AgileR
brendan.kowitz@readify.nethttp://www.kowitz.net@brendankowitz

More Related Content

What's hot (20)

PPTX
SignalR for ASP.NET Developers
Shivanand Arur
 
PPTX
SignalR
Eyal Vardi
 
PPTX
SignalR Overview
Michael Sukachev
 
PPTX
Real time web with SignalR
Alessandro Melchiori
 
PPTX
Real-time Communications with SignalR
Shravan Kumar Kasagoni
 
PPT
SignalR
William Austin
 
PPTX
SignalR with ASP.NET MVC 6
Tung Nguyen Thanh
 
PPTX
Building Real Time Web Applications with SignalR (NoVA Code Camp 2015)
Kevin Griffin
 
PPTX
signalr
Owen Chen
 
PDF
SignalR
Troy Miles
 
PPTX
Real time websites and mobile apps with SignalR
Roy Cornelissen
 
PPTX
SignalR. Code, not toothpaste - TechDays Belgium 2012
Maarten Balliauw
 
PPTX
Clean up this mess - API Gateway & Service Discovery in .NET
Marcin Tyborowski
 
PPTX
Web Real-time Communications
Alexei Skachykhin
 
PPTX
SignalR powered real-time x-plat mobile apps!
Sam Basu
 
PPTX
Microsoft signal r
rustd
 
PPTX
Real Time Web with SignalR
Bilal Amjad
 
PDF
APIdays Singapore 2019 - API Gateway in a Nutshell, Allan Chua, Solution and ...
apidays
 
PDF
AWS API Gateway - AJUG August 2018
Yoel Spotts
 
PPT
Getting started with ASPNET Core SignalR
Nemi Chand
 
SignalR for ASP.NET Developers
Shivanand Arur
 
SignalR
Eyal Vardi
 
SignalR Overview
Michael Sukachev
 
Real time web with SignalR
Alessandro Melchiori
 
Real-time Communications with SignalR
Shravan Kumar Kasagoni
 
SignalR with ASP.NET MVC 6
Tung Nguyen Thanh
 
Building Real Time Web Applications with SignalR (NoVA Code Camp 2015)
Kevin Griffin
 
signalr
Owen Chen
 
SignalR
Troy Miles
 
Real time websites and mobile apps with SignalR
Roy Cornelissen
 
SignalR. Code, not toothpaste - TechDays Belgium 2012
Maarten Balliauw
 
Clean up this mess - API Gateway & Service Discovery in .NET
Marcin Tyborowski
 
Web Real-time Communications
Alexei Skachykhin
 
SignalR powered real-time x-plat mobile apps!
Sam Basu
 
Microsoft signal r
rustd
 
Real Time Web with SignalR
Bilal Amjad
 
APIdays Singapore 2019 - API Gateway in a Nutshell, Allan Chua, Solution and ...
apidays
 
AWS API Gateway - AJUG August 2018
Yoel Spotts
 
Getting started with ASPNET Core SignalR
Nemi Chand
 

Similar to Real time web applications with SignalR (BNE .NET UG) (20)

PPTX
Real time web applications with signal r
Elad Avneri
 
PPTX
Building Real Time Applications with ASP.NET SignalR 2.0 by Rachel Appel
.NET Conf UY
 
PPTX
Signal r azurepresentation
Justin Wendlandt
 
PPTX
SignalR Powered X-Platform Real-Time Apps!
Sam Basu
 
PPTX
ASP.NET MVC 5 and SignalR 2
Jaliya Udagedara
 
PPTX
Real-time web applications using SharePoint, SignalR and Azure Service Bus
Dinusha Kumarasiri
 
PPTX
Signal r
Vasilios Kuznos
 
PPTX
How To Build Real-Time Applications With ASP.NET Core SignalR
IntelliSource Technologies
 
PDF
SignalR
Slawomir Dorzak
 
PPTX
Web e device in real time con asp.net Signal R
Luca Zulian
 
PPTX
Real Time Apps with SignalR Core
Sam Basu
 
PPTX
Asynchrone Echtzeitanwendungen für SharePoint mit SignalR und knockout.js
Christian Heindel
 
PDF
SignalR
Sarvesh Kushwaha
 
PPTX
SignalR aplicaciones en tiempo real
Miguel Angel Teheran Garcia
 
PPTX
SignalR Dublin ALT.NET
Dorin Manoli
 
PPTX
SignalR
LearningTech
 
PPTX
SignalR: Above & Beyond Chat
David Pine
 
PPTX
Signal rity1
Yaniv Rodenski
 
PDF
SignalR: Add real-time to your applications
Eugene Zharkov
 
PDF
How SignalR Can Simplify Your Messaging Needs? | Virtuoso Infotech
VirtuosoInfotech
 
Real time web applications with signal r
Elad Avneri
 
Building Real Time Applications with ASP.NET SignalR 2.0 by Rachel Appel
.NET Conf UY
 
Signal r azurepresentation
Justin Wendlandt
 
SignalR Powered X-Platform Real-Time Apps!
Sam Basu
 
ASP.NET MVC 5 and SignalR 2
Jaliya Udagedara
 
Real-time web applications using SharePoint, SignalR and Azure Service Bus
Dinusha Kumarasiri
 
Signal r
Vasilios Kuznos
 
How To Build Real-Time Applications With ASP.NET Core SignalR
IntelliSource Technologies
 
Web e device in real time con asp.net Signal R
Luca Zulian
 
Real Time Apps with SignalR Core
Sam Basu
 
Asynchrone Echtzeitanwendungen für SharePoint mit SignalR und knockout.js
Christian Heindel
 
SignalR aplicaciones en tiempo real
Miguel Angel Teheran Garcia
 
SignalR Dublin ALT.NET
Dorin Manoli
 
SignalR
LearningTech
 
SignalR: Above & Beyond Chat
David Pine
 
Signal rity1
Yaniv Rodenski
 
SignalR: Add real-time to your applications
Eugene Zharkov
 
How SignalR Can Simplify Your Messaging Needs? | Virtuoso Infotech
VirtuosoInfotech
 
Ad

Recently uploaded (20)

PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Ad

Real time web applications with SignalR (BNE .NET UG)