Upgrade to Pro — share decks privately, control downloads, hide ads and more …

SignalR 實例開發 Real-Time Web -twMVC#7

twMVC
January 12, 2013

SignalR 實例開發 Real-Time Web -twMVC#7

講者:Jerry 江旻書 http://www.dotblogs.com.tw/lastsecret/(MVP、twMVC核心講者

簡介:如何讓網頁不需要重新整理頁面,也能接收到最新的資訊?
如何從Server主動推送訊息到Client端?
想知道Facebook如何做到讓你的動態牆永遠有最新的資訊嗎?

本課程透過SignalR來告訴你背後的原理以及實戰教學Real-Time網站該怎麼製作,
原理加上完整的範例讓你一學就會!

http://mvc.tw

twMVC

January 12, 2013
Tweet

More Decks by twMVC

Other Decks in Technology

Transcript

  1.  可供 ASP.NET 開發 Real-Time Web 所使用的Library  目前版本:1.0rc1 

    官方網站  http://signalr.net/  學習資源  http://www.asp.net/signalr  http://msdn.microsoft.com/zh-tw/magazine/hh852586.aspx  實例  http://www.tutorabc.com/ 8 ASP.NET SignalR
  2.  Transport Modes  WebSockets  Server Sent Events 

    Forever Frame  Long polling 9 ASP.NET SignalR
  3.  Persistent Connections 使用方式: 1. 設計一個類別,並繼承PersistentConnection 2. Override OnReceivedAsync 3.

    註冊路由 4. 使用js進行連線,並設定received與send的function 11 ASP.NET SignalR – Persistent Connections