2

How can i push notification to client same as Gmail do? which technology should i use?

user829174
  • 5,844
  • 21
  • 71
  • 117

2 Answers2

5

For an ASP.NET implementation, have a look at SignalR.

Sam
  • 4,664
  • 2
  • 34
  • 47
  • SignalR will use web sockets and if web sockets are not supported by browser then it will use polling. – 000 Jun 17 '12 at 14:43
  • @Sam Yep, but anyway you will use either web sockets or polling, than it's better to use library like SignalR than do it yourself – Regfor Jun 17 '12 at 16:00
0

You need to create or reuse a Comet implementation. This has already been discussed here.

More details about this design approach can be found here.

Community
  • 1
  • 1
Marcel N.
  • 13,438
  • 5
  • 46
  • 70