SlideShare a Scribd company logo
SignalR-Powered X-Platform Real-Time
Apps!
SignalR-Powered X-Platform Real-Time
Apps!
Samidip Basu Microsoft MVP, MS, MCPD, CAPM
Senior Technical Trainer | Telerik Inc. |
www.telerik.com
E: Sam.Basu@Telerik.com | L: x3179 | C: 507 244
0579
T: @samidip | W: http://samidipbasu.com
SignalR Powered X-Platform Real-Time Apps!
SignalR Powered X-Platform Real-Time Apps!
Why do we need real-time?
- New email
- Twitter/Facebook updates
- Stock Ticker/Live Auctions
- Game Scores
- Real-time Notifications
- Turn-by-Turn or Shooter Games
- Collaboration
- Progress Bars
- And obviously, Chat
No dearth of examples where real-time communication in needed ..
Challenges
- Building real-time applications is difficult
- Transcends boundaries of choice in development platforms
- Part of the problem is HTTP – Request/Response protocol
HTTP = HyperText Transfer Protocol | Obviously works, but has
limitations!

- Statelessness of web applications
 Need open transport channel between server and clients for
bidirectional or full-duplex communication.
Existing Technologies
Periodic/Ajax Polling

Image courtesy @maartenballiauw

Downsides:
• Not real-time
• Potential big bandwidth misuse!
Existing Technologies .. Contd.
Long Polling – server does not respond unless X happens, client polls
after data receive or time-out

Image courtesy @maartenballiauw

Downsides:
• Needs orchestration
• Custom code on either end
Existing Technologies .. Others
- Use plugins like Silverlight/Flash – to communicate through sockets
- Forever Frame (execute script blocks from server in iFrame)
- Server sent Events (Push or Stream from server)

- Native HTML 5 Web Sockets (Magic Unicorn world) – true
bidirectional
transport channel; but support can be flaky
Bottom-line:
• Lots of options in existing technologies to build real-time applications
• Not perfect; choose what you need
Wish list:
• Wouldn’t it be nice if someone took care of the network transport layer?
• Would you not want to focus on just your application?
Enter SignalR
An async, persistent connection/signalling library for .NET over HTTP ... aids in
building real time, multi-user connected applications.
Persistent client-server connection over best transport .. Abstracts away the
transport layer.
From ASP.NET team-members (Damian Edwards & David Fowler) ..
Not officially MSFT product, but OSS Boom! 
https://github.com/SignalR/SignalR
http://jabbr.net/#/rooms/signal
http://shootr.signalr.net/

SignalR is broken up into a few packages on NuGet:
SignalR - Package for SignalR.Server and SignalR.Js
SignalR.Server - Server components needed for SignalR endpoints
SignalR.Js - Javascript client for SignalR
SignalR.Client - .NET client for SignalR
SignalR.WP7, SignalR.WinRT, SignalR.Silverlight – For the cool folks 
SignalR.WebSockets - WebSocket Transport for SignalR
What is SignalR?
- SignalR is an asynchronous persistent connection/signaling library for
ASP.NET applications
- SignalR makes it easy to build real-time multi-user connected applications
- SignalR abstracts away the network layer for bidirectional real-time
communications, thus helping you focus on building your application
- SignalR includes broad platform support & features a rich API set for aiding
client-server communications

SignalR is quite
awesome!
History & Examples
- Both members of Microsoft’s One ASP.NET team
- SignalR had humble beginnings as a side project
- Started as Open Source Software (OSS)
- Matured enough over past couple of years
David Fowler

- Now officially part of Microsoft ASP.NET stack (Yay)!
- Still continues to be open-source @
https://github.com/SignalR/SignalR

Damian
Edwards

- SignalR powered IRC Chat application: https://jabbr.net/
- SignalR powered real-time game:
http://shootr.signalr.net/
How it works
- SignalR allows bidirectional communication between client & server
over persistent connections

- SignalR provides simple APIs for Remote Procedure Calls (RPC)
between client & server
- Transport mechanisms are chosen to best fit given client & server
environments
- SignalR manages the network layer for your application, unless you
want control
Abstraction of Network Transport!

How it works .. Contd.

Image courtesy
Microsoft

The first time you see SignalR in action ..
“Your brain should have exploded & leaked out of your ears ..” – Scott Hanselman
SignalR Internals
- SignalR abstracts bidirectional communication between client & server over
persistent connections
- The choice of network transport relies on available client & server
environments. Applications may also specify transport layer.
- Order of network transports selected by SignalR:
- Web Sockets
Best transport, but with most stringent
- Server Sent Events requirements!
- Forever Frame
- Long Polling
- Ajax Polling
- Best part – SignalR has automatic fallbacks built-in!
SignalR API Stack
- SignalR offers consistent interface on top of network technologies
- Developer gets to choose the level of abstraction of network layer
- SignalR API stack offers two modes for controlling the real-time communication
between client & server:
- Hubs
- High level abstraction
- Built on top of Persistent Connections
- Least developer work
- Works for majority of uses
- Will be familiar to developers who have used remote invocation APIs such as .NET Remoting

- Persistent Connections
- Low level access to communication
- Direct developer access to network pipeline
- Access to lot more communication events
- Will be familiar to developers who have used connection-based APIs such as WCF
More SignalR APIs
- Specifying network technology if client/server capabilities are known in
advance; saves the hand-shaking time for SignalR connectivity

- Monitor network transport/traffic by turning on logging on the server
- List of clients connected to SignalR server is maintained in-memory on server;
developers may choose to persist based on application needs
- Connection Management

- Connect/Disconnect events
- Grouping Connections
- Authorization

Needed for chatrooms


- Messages from SignalR server can be broadcast to
- All clients
- Specific clients
- Grouped clients

Offers fine-grained control over client
reach from SignalR server!

- SignalR applications can scale out to thousands of clients using Service Bus,
SQL Server or Redis
SignalR Platform Support – Server
Side
- Server OS
- Windows Server 2012
- Windows Server 2008 r2
- Windows 8
- Windows 7
- Windows Azure [Does not support Web Sockets yet]

- Server .NET Frameworks
- .NET 4.5
- .NET 4 [Does not support Web Sockets]

- Server IIS Requirements
- IIS 8 or IIS 8 Express [Only ones with Web Socket support]
- IIS 7 and 7.5.
- IIS must be running in integrated mode
- The hosting application must be running in full trust mode

- SignalR applications can be self-hosted in own process outside of IIS using OWIN
(Open Web Interface for .NET) techniques
SignalR Platform Support – Client Side
- Client Browsers
- Microsoft Internet Explorer (IE) versions 8, 9 and 10. Modern, Desktop, and Mobile versions
are supported.
- Mozilla Firefox: current version - 1, both Windows and Mac versions.
- Google Chrome: current version - 1, both Windows and Mac versions.
- Safari: current version - 1, both Mac and iOS versions.
- Opera: current version - 1, Windows only.
- Android browser

- Applications that use SignalR in browsers must use jQuery version 1.6.4 or major later
versions
- Windows Desktop & Silverlight applications
- Applications using .NET 4 are supported on Windows XP SP3 or later.
- Applications using .NET Framework 4.5 are supported on Windows Vista or later.

- Windows Store & Windows Phone applications
Live Demos & Walkthrough
- Client calls server; Server calls client; seamlessly – Whoa!
- No polling, at least in our code

- Low level – PersistentConnection
more control
- Abstraction – Hub
easier to use
like spokes on a wheel, broadcasting
- Server maintains Clients .. Broadcast to all, group or individual clients
- Built-in Retry logic if transport fails
- Supports scaling out to web farms - backplane support through
Service Bus or Redis (in memory DB) to pump messages between
multiple servers
Real-time connectivity for .NET apps
- .NET Mobile clients can be super interactive with SignalR incorporation
- What .NET client apps could add SignalR powered real-time connectivity?
- Console
- Windows Forms & WPF
- Silverlight
- Windows 8 Store Apps
- Windows Phone Apps
- Any other apps running .NET ..

One SignalR NuGet for all .NET
clients

- Think you can bypass the Web entirely?
- Imagine the possibilities for your next .NET app
- Great potential for enterprises
Extending SignalR to other platforms
- SignalR makes a lot of sense for Mobile client apps
- Windows 8 & Windows Phone .NET options are great!
- But, we do not live in a silo
- In fact iOS, Android & Windows will coexist in the mobile space
- Would the other platforms be left high & dry?
- Several options to extend SignalR to other non-MSFT platforms

- Let real-time connectivity shine ..
Telerik AppBuilder

!! Supports SignalR
!!

- Use HTML5/CSS3/JavaScript to build cross-platform apps
- Telerik’s AppBuilder provides unified IDE to publish to iOS & Android Stores
- One code base across all platforms, with VS integration
- Adaptive Kendo UI Mobile controls
- Learn more @ http://www.telerik.com/appbuilder
Xamarin

!! Supports SignalR
!!

- Write cross-platform apps entirely in C# inside Visual Studio
- Compiled into native iOS/Android/Mac applications
- Unified IDE with custom UI for each platform
- Learn more @ http://xamarin.com/
SignalR Client for iOS

http://dyknow.github.com/SignalR-ObjC/
Where does this fit?
- Other technologies have solved this problem

- Socket.IO is a client-side Jscript library that talks to node.js
- Nowjs supports namespace sync between client-server
- Primary SignalR advantages
→ Simplicity & ease of use
→ Works natively in .NET
→ Works out of browser
→ Supports Web Sockets for best transport
[ASP.NET 4.5/IIS 8 on Win8 only]
→ Works on other platforms, specially mobile
Questions?
Thank You!
@samidip

More Related Content

PDF
API Design Workflows
PDF
API workshop by AWS and 3scale
PPTX
London Adapt or Die: Kubernetes, Containers and Cloud - The MoD Story
PDF
Tools for designing and building great APIs
PPTX
Tools and techniques for APIs
PDF
Lessons Learned from Building Enterprise APIs (Gustaf Nyman)
PDF
apidays Paris 2019 - How Do Async APIs Survive in a Rest World? by Luca Ferra...
PDF
I Love APIs 2015 : Zero to Thousands TPS Private Cloud Operations Workshop
API Design Workflows
API workshop by AWS and 3scale
London Adapt or Die: Kubernetes, Containers and Cloud - The MoD Story
Tools for designing and building great APIs
Tools and techniques for APIs
Lessons Learned from Building Enterprise APIs (Gustaf Nyman)
apidays Paris 2019 - How Do Async APIs Survive in a Rest World? by Luca Ferra...
I Love APIs 2015 : Zero to Thousands TPS Private Cloud Operations Workshop

What's hot (20)

PPTX
02 api gateway
PPTX
Microservices in action: How to actually build them
PDF
Blowing up the Monolith: Practical Advice on Microservices
PPTX
API Gateway with legend lambada
PPTX
What's Better than Microservices? Serverless Microservices.
PDF
Webcast: API-Centric Architecture for Building Context-Aware Apps
PPTX
API Management and Kubernetes
PPTX
Continuous Integration and Delivery at Shapeways (Matt Boyle)
PDF
Rest api best practices – comprehensive handbook
PDF
APIs Are Just Like LEGO Blocks | APPSeCONNECT
PDF
apidays LIVE Paris - The Business of APIs by Jed Ng
PDF
apidays LIVE Jakarta - Better API DX with a CLI by Phil Nash, Twilio
PDF
Achieving Microservices Maturity
PPTX
Design-first API Development using Swagger and Node
PDF
Api gateway
PPTX
apidays LIVE Australia 2020 - Have your cake and eat it too: GraphQL? REST? W...
PPTX
Adapt or Die: A Microservices Story at Google
PDF
apidays LIVE Hong Kong 2021 - GraphQL : Beyond APIs, graph your enterprise by...
PDF
apidays LIVE Paris - Innovation and rejuvenation combined: a beneficial appro...
PDF
Integrating saa s application using azure services v0.5
02 api gateway
Microservices in action: How to actually build them
Blowing up the Monolith: Practical Advice on Microservices
API Gateway with legend lambada
What's Better than Microservices? Serverless Microservices.
Webcast: API-Centric Architecture for Building Context-Aware Apps
API Management and Kubernetes
Continuous Integration and Delivery at Shapeways (Matt Boyle)
Rest api best practices – comprehensive handbook
APIs Are Just Like LEGO Blocks | APPSeCONNECT
apidays LIVE Paris - The Business of APIs by Jed Ng
apidays LIVE Jakarta - Better API DX with a CLI by Phil Nash, Twilio
Achieving Microservices Maturity
Design-first API Development using Swagger and Node
Api gateway
apidays LIVE Australia 2020 - Have your cake and eat it too: GraphQL? REST? W...
Adapt or Die: A Microservices Story at Google
apidays LIVE Hong Kong 2021 - GraphQL : Beyond APIs, graph your enterprise by...
apidays LIVE Paris - Innovation and rejuvenation combined: a beneficial appro...
Integrating saa s application using azure services v0.5
Ad

Similar to SignalR Powered X-Platform Real-Time Apps! (20)

PPTX
SignalR powered real-time x-plat mobile apps!
PPTX
SignalR Intro + WPDev integration @ Codetock
PPTX
SignalR Intro + WPDev
PPTX
SignalR + Mobile Possibilities
PPTX
Asynchrone Echtzeitanwendungen für SharePoint mit SignalR und knockout.js
PPTX
Real Time Web with SignalR
PDF
Realtime mobile&iot solutions using mqtt and message sight
PPTX
Signal R 2015
PPTX
MicroEJ software solution for IoT and embedded devices
PDF
Busy Bee Application Develompent Platform
PPT
Client Server Development – Problems in Supporting Different Wireless Platform
PPTX
WebSphere Liberty Rtcomm: WebRTC Middleware for the Enterprise
PPTX
Introduction to SignalR
PDF
RefCard API Architecture Strategy
DOCX
Detailed-Resume-Rebai-Hamida
PPTX
IoT with SignalR & .NET Gadgeteer - NetMF@Work
PPTX
Microsoft signal r
PDF
Uit Presentation of IN/NGIN for Cosmote 2010
PPT
z Technical Summit Track 3 Session 4 Developing mobilefirst app for z
PPTX
SignalR Overview
SignalR powered real-time x-plat mobile apps!
SignalR Intro + WPDev integration @ Codetock
SignalR Intro + WPDev
SignalR + Mobile Possibilities
Asynchrone Echtzeitanwendungen für SharePoint mit SignalR und knockout.js
Real Time Web with SignalR
Realtime mobile&iot solutions using mqtt and message sight
Signal R 2015
MicroEJ software solution for IoT and embedded devices
Busy Bee Application Develompent Platform
Client Server Development – Problems in Supporting Different Wireless Platform
WebSphere Liberty Rtcomm: WebRTC Middleware for the Enterprise
Introduction to SignalR
RefCard API Architecture Strategy
Detailed-Resume-Rebai-Hamida
IoT with SignalR & .NET Gadgeteer - NetMF@Work
Microsoft signal r
Uit Presentation of IN/NGIN for Cosmote 2010
z Technical Summit Track 3 Session 4 Developing mobilefirst app for z
SignalR Overview
Ad

More from Sam Basu (20)

PPTX
Surfing in Maui
PPTX
Modern Cross-Platform Dev with .NET 6
PPTX
Conversational Bots
PPTX
Real Time Apps with SignalR Core
PPTX
State of Mobile Development
PPTX
.NET Today & Tomorrow @ Beer City Code
PPTX
Essential Tools for Xamarin Developers
PPTX
Modern Web Tour
PPTX
Flying High with Xamarin!
PPTX
Xamarin Roadshow
PPTX
Flying High with Xamarin
PPTX
ASP.NET Tech Stack talk @ Houston TechFest
PPTX
Lap Around ASPNet Core - PGHDotNet
PPTX
Lap Around ASPNet Core - HDC
PPTX
Free Your On-Premises Data
PPTX
Lap around ASP.NET 5 - Dayton UG
PPTX
A Lap around ASP.NET 5 - VConf
PPTX
A Lap around ASP.NET 5 - CONDG
PPTX
Modern .NET Apps - TelerikNext
PPTX
Modern .NET Apps - Codestock
Surfing in Maui
Modern Cross-Platform Dev with .NET 6
Conversational Bots
Real Time Apps with SignalR Core
State of Mobile Development
.NET Today & Tomorrow @ Beer City Code
Essential Tools for Xamarin Developers
Modern Web Tour
Flying High with Xamarin!
Xamarin Roadshow
Flying High with Xamarin
ASP.NET Tech Stack talk @ Houston TechFest
Lap Around ASPNet Core - PGHDotNet
Lap Around ASPNet Core - HDC
Free Your On-Premises Data
Lap around ASP.NET 5 - Dayton UG
A Lap around ASP.NET 5 - VConf
A Lap around ASP.NET 5 - CONDG
Modern .NET Apps - TelerikNext
Modern .NET Apps - Codestock

Recently uploaded (20)

PPTX
A Presentation on Artificial Intelligence
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Modernizing your data center with Dell and AMD
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Machine learning based COVID-19 study performance prediction
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
Cloud computing and distributed systems.
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
A Presentation on Artificial Intelligence
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
The AUB Centre for AI in Media Proposal.docx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Modernizing your data center with Dell and AMD
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Unlocking AI with Model Context Protocol (MCP)
Diabetes mellitus diagnosis method based random forest with bat algorithm
MYSQL Presentation for SQL database connectivity
Machine learning based COVID-19 study performance prediction
The Rise and Fall of 3GPP – Time for a Sabbatical?
Dropbox Q2 2025 Financial Results & Investor Presentation
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Cloud computing and distributed systems.
Empathic Computing: Creating Shared Understanding
Encapsulation_ Review paper, used for researhc scholars
Network Security Unit 5.pdf for BCA BBA.
Digital-Transformation-Roadmap-for-Companies.pptx

SignalR Powered X-Platform Real-Time Apps!

  • 2. SignalR-Powered X-Platform Real-Time Apps! Samidip Basu Microsoft MVP, MS, MCPD, CAPM Senior Technical Trainer | Telerik Inc. | www.telerik.com E: Sam.Basu@Telerik.com | L: x3179 | C: 507 244 0579 T: @samidip | W: http://samidipbasu.com
  • 5. Why do we need real-time? - New email - Twitter/Facebook updates - Stock Ticker/Live Auctions - Game Scores - Real-time Notifications - Turn-by-Turn or Shooter Games - Collaboration - Progress Bars - And obviously, Chat No dearth of examples where real-time communication in needed ..
  • 6. Challenges - Building real-time applications is difficult - Transcends boundaries of choice in development platforms - Part of the problem is HTTP – Request/Response protocol HTTP = HyperText Transfer Protocol | Obviously works, but has limitations! - Statelessness of web applications  Need open transport channel between server and clients for bidirectional or full-duplex communication.
  • 7. Existing Technologies Periodic/Ajax Polling Image courtesy @maartenballiauw Downsides: • Not real-time • Potential big bandwidth misuse!
  • 8. Existing Technologies .. Contd. Long Polling – server does not respond unless X happens, client polls after data receive or time-out Image courtesy @maartenballiauw Downsides: • Needs orchestration • Custom code on either end
  • 9. Existing Technologies .. Others - Use plugins like Silverlight/Flash – to communicate through sockets - Forever Frame (execute script blocks from server in iFrame) - Server sent Events (Push or Stream from server) - Native HTML 5 Web Sockets (Magic Unicorn world) – true bidirectional transport channel; but support can be flaky Bottom-line: • Lots of options in existing technologies to build real-time applications • Not perfect; choose what you need Wish list: • Wouldn’t it be nice if someone took care of the network transport layer? • Would you not want to focus on just your application?
  • 10. Enter SignalR An async, persistent connection/signalling library for .NET over HTTP ... aids in building real time, multi-user connected applications. Persistent client-server connection over best transport .. Abstracts away the transport layer. From ASP.NET team-members (Damian Edwards & David Fowler) .. Not officially MSFT product, but OSS Boom!  https://github.com/SignalR/SignalR http://jabbr.net/#/rooms/signal http://shootr.signalr.net/ SignalR is broken up into a few packages on NuGet: SignalR - Package for SignalR.Server and SignalR.Js SignalR.Server - Server components needed for SignalR endpoints SignalR.Js - Javascript client for SignalR SignalR.Client - .NET client for SignalR SignalR.WP7, SignalR.WinRT, SignalR.Silverlight – For the cool folks  SignalR.WebSockets - WebSocket Transport for SignalR
  • 11. What is SignalR? - SignalR is an asynchronous persistent connection/signaling library for ASP.NET applications - SignalR makes it easy to build real-time multi-user connected applications - SignalR abstracts away the network layer for bidirectional real-time communications, thus helping you focus on building your application - SignalR includes broad platform support & features a rich API set for aiding client-server communications SignalR is quite awesome!
  • 12. History & Examples - Both members of Microsoft’s One ASP.NET team - SignalR had humble beginnings as a side project - Started as Open Source Software (OSS) - Matured enough over past couple of years David Fowler - Now officially part of Microsoft ASP.NET stack (Yay)! - Still continues to be open-source @ https://github.com/SignalR/SignalR Damian Edwards - SignalR powered IRC Chat application: https://jabbr.net/ - SignalR powered real-time game: http://shootr.signalr.net/
  • 13. How it works - SignalR allows bidirectional communication between client & server over persistent connections - SignalR provides simple APIs for Remote Procedure Calls (RPC) between client & server - Transport mechanisms are chosen to best fit given client & server environments - SignalR manages the network layer for your application, unless you want control
  • 14. Abstraction of Network Transport! How it works .. Contd. Image courtesy Microsoft The first time you see SignalR in action .. “Your brain should have exploded & leaked out of your ears ..” – Scott Hanselman
  • 15. SignalR Internals - SignalR abstracts bidirectional communication between client & server over persistent connections - The choice of network transport relies on available client & server environments. Applications may also specify transport layer. - Order of network transports selected by SignalR: - Web Sockets Best transport, but with most stringent - Server Sent Events requirements! - Forever Frame - Long Polling - Ajax Polling - Best part – SignalR has automatic fallbacks built-in!
  • 16. SignalR API Stack - SignalR offers consistent interface on top of network technologies - Developer gets to choose the level of abstraction of network layer - SignalR API stack offers two modes for controlling the real-time communication between client & server: - Hubs - High level abstraction - Built on top of Persistent Connections - Least developer work - Works for majority of uses - Will be familiar to developers who have used remote invocation APIs such as .NET Remoting - Persistent Connections - Low level access to communication - Direct developer access to network pipeline - Access to lot more communication events - Will be familiar to developers who have used connection-based APIs such as WCF
  • 17. More SignalR APIs - Specifying network technology if client/server capabilities are known in advance; saves the hand-shaking time for SignalR connectivity - Monitor network transport/traffic by turning on logging on the server - List of clients connected to SignalR server is maintained in-memory on server; developers may choose to persist based on application needs - Connection Management - Connect/Disconnect events - Grouping Connections - Authorization Needed for chatrooms  - Messages from SignalR server can be broadcast to - All clients - Specific clients - Grouped clients Offers fine-grained control over client reach from SignalR server! - SignalR applications can scale out to thousands of clients using Service Bus, SQL Server or Redis
  • 18. SignalR Platform Support – Server Side - Server OS - Windows Server 2012 - Windows Server 2008 r2 - Windows 8 - Windows 7 - Windows Azure [Does not support Web Sockets yet] - Server .NET Frameworks - .NET 4.5 - .NET 4 [Does not support Web Sockets] - Server IIS Requirements - IIS 8 or IIS 8 Express [Only ones with Web Socket support] - IIS 7 and 7.5. - IIS must be running in integrated mode - The hosting application must be running in full trust mode - SignalR applications can be self-hosted in own process outside of IIS using OWIN (Open Web Interface for .NET) techniques
  • 19. SignalR Platform Support – Client Side - Client Browsers - Microsoft Internet Explorer (IE) versions 8, 9 and 10. Modern, Desktop, and Mobile versions are supported. - Mozilla Firefox: current version - 1, both Windows and Mac versions. - Google Chrome: current version - 1, both Windows and Mac versions. - Safari: current version - 1, both Mac and iOS versions. - Opera: current version - 1, Windows only. - Android browser - Applications that use SignalR in browsers must use jQuery version 1.6.4 or major later versions - Windows Desktop & Silverlight applications - Applications using .NET 4 are supported on Windows XP SP3 or later. - Applications using .NET Framework 4.5 are supported on Windows Vista or later. - Windows Store & Windows Phone applications
  • 20. Live Demos & Walkthrough - Client calls server; Server calls client; seamlessly – Whoa! - No polling, at least in our code - Low level – PersistentConnection more control - Abstraction – Hub easier to use like spokes on a wheel, broadcasting - Server maintains Clients .. Broadcast to all, group or individual clients - Built-in Retry logic if transport fails - Supports scaling out to web farms - backplane support through Service Bus or Redis (in memory DB) to pump messages between multiple servers
  • 21. Real-time connectivity for .NET apps - .NET Mobile clients can be super interactive with SignalR incorporation - What .NET client apps could add SignalR powered real-time connectivity? - Console - Windows Forms & WPF - Silverlight - Windows 8 Store Apps - Windows Phone Apps - Any other apps running .NET .. One SignalR NuGet for all .NET clients - Think you can bypass the Web entirely? - Imagine the possibilities for your next .NET app - Great potential for enterprises
  • 22. Extending SignalR to other platforms - SignalR makes a lot of sense for Mobile client apps - Windows 8 & Windows Phone .NET options are great! - But, we do not live in a silo - In fact iOS, Android & Windows will coexist in the mobile space - Would the other platforms be left high & dry? - Several options to extend SignalR to other non-MSFT platforms - Let real-time connectivity shine ..
  • 23. Telerik AppBuilder !! Supports SignalR !! - Use HTML5/CSS3/JavaScript to build cross-platform apps - Telerik’s AppBuilder provides unified IDE to publish to iOS & Android Stores - One code base across all platforms, with VS integration - Adaptive Kendo UI Mobile controls - Learn more @ http://www.telerik.com/appbuilder
  • 24. Xamarin !! Supports SignalR !! - Write cross-platform apps entirely in C# inside Visual Studio - Compiled into native iOS/Android/Mac applications - Unified IDE with custom UI for each platform - Learn more @ http://xamarin.com/
  • 25. SignalR Client for iOS http://dyknow.github.com/SignalR-ObjC/
  • 26. Where does this fit? - Other technologies have solved this problem - Socket.IO is a client-side Jscript library that talks to node.js - Nowjs supports namespace sync between client-server - Primary SignalR advantages → Simplicity & ease of use → Works natively in .NET → Works out of browser → Supports Web Sockets for best transport [ASP.NET 4.5/IIS 8 on Win8 only] → Works on other platforms, specially mobile