DCSIMG
SignalR - Ran Wahle's blog

Ran Wahle's blog

Browse by Tags

All Tags » SignalR (RSS)
Demo code and Slide decks from my signalR session
Today I gave my session about signalR at Sela Developer Practice . It went great and I wish to thank all attendees.  Furthermore,I wish to thank everyone who helped me through the day with my ill baby who I had to bring to the conference. Here are the demos, including some additional demos we didn’t go through. Here, you can see the slides from today’s presentation
Real-time web experience with signalR Slides and demos
Yesterday, I had a great time speaking about signalR in front of WDCIL audience. We had some problems at the beginning when we couldn’t duplicate my screen display. Fortunately Yaniv Rodensky came to the rescue with his own laptop,and surprisingly all demos worked well. I want to thank all attendees who came to hear me speak.   Below, you can see the slides from my presentation, and download demos Here .   Realtime web experience with signalR from ranwahle
Logging with SignalR
Logging with SignalR Debugging your signalR application on both client and server can consume time. To save time we might go to Fiddler ,  or use the Network tab on our browser’s developer tools. signalR offers simple logging mechanism for javascript clients. in this post I’ll briefly show how to enable this log, what it writes when enable, and how to add some custom log records.   Enable logging To enable logging you simply need to add the following $.connection.hub.logging = true ; After...
First signalR eBook by Jose M. Aguilar
First signalR eBook was published yesterday. The book was authored by Jose M. Aguilar, Microsoft ASP.NET MVP.   The book is free of charge along with code samples.   Click here to download.
SignalR Protocol
SignalR Protocol   After showing how to get started with SignalR , how to use it with .Net client and how to self host it, I wish to show what SignalR does on the network level. In this post I will review the protocol SignalR implements and see what data is sent at the various stages.   Negotiation phase: One of SignalR best qualities is its ability to support various communication techniques without its API user have to change his/her code. Therefore both client and server needs to “negotiate...
Self Hosting SignalR
Self Hosting SignalR SignalR , as shown in the earlier posts, can be hosted within a regular ASP.NET application (in other words, on IIS), but can also be self-hosted. You may want to do so if you don’t want the SignalR hosting machine to have IIS installed. In this post I’ll show a simple way of doing so with a console application. It won’t be much different with windows service and I’ll explain how to do it there as well.   Step 1: Install Nuget packages   There are two nuget packages...
Sela Developer Practice
    Sela   SDP conference, the biggest one yet, will be held May 5-9, 2013.   This conference includes 5 conference days, 3 days of full tutorial workshops, and 2 days of breakout sessions. In this conference you’ll also have the chance to meet with some international experts You can check out our list of sessions and speakers . I will speak there about SignalR , new and exciting ASP.NET project I’ve recently posted about. Our last conference had a record in terms of attendance...
Using SignalR with .Net client
Using SignalR with .Net client   In my previous post I demonstrated how to use SignalR with javascript client. After this post, I got an email from my extremely talented colleague Bnaya Eshet   asking if there’s a way to to SignalR with .Net client. I said “yes” of course so now I want to demonstrate how to do it. The server side code is the same as in my previous post , this is just another client example.   Step 1: Create .Net client project: Add some .Net project, any project type...
Getting started with SignalR
Recently I’ve begun testing ASP.NET.SignalR, an open source project that supports real-time web functionality in our application.SignalR logo SignalR can be added to an existing ASP.NET application and help as easily gain real-time functionality in no-time. It can run with browsers that supports HTML5 WebSocket or long polling (IE 8). SignalR has both server and client code, its client code is based on jQuery In this post I’ll demonstrate how to work with SignalR along with a few basic terms related to it....