由买买提看人间百态

topics

全部话题 - 话题: signalr
(共0页)
x**n
发帖数: 461
1
来自主题: DotNet版 - Web application 的现状和.net
如果你真的要写一个非常好的交互网站,signalr是非常好的工具,但是先计算一下
load,signalr现在支持大概1000个客户端。如果你不幸跟我一样在regulated的环境,
在再等等吧。
w*******7
发帖数: 188
2
如果是实时数据,MS提供signalR( asp.net/signalR),如实时股票.
否则你可以用ajax call, 设timer, check data 是否变化,有变化就刷新.
你可以看一下knockout.js,好象就是针对你这种情况.

2014
w*******7
发帖数: 188
3
如果是实时数据,MS提供signalR( asp.net/signalR),如实时股票.
否则你可以用ajax call, 设timer, check data 是否变化,有变化就刷新.
你可以看一下knockout.js,好象就是针对你这种情况.

2014
V**********y
发帖数: 110
s***o
发帖数: 2191
5
still not sure what you are trying to achieve. Web is stateless, IIS
generates a response only when it receives a request, and this is when your
custom code in your web app contacts the service app and get result from it
(and use it as part of the output of the page). Your service acts as a "
listener" here. Trying to initiate the communication from the service end is
in a "wrong" direction.
Or if what you want to do is that your "service" continues to send
information to an opened web page in b... 阅读全帖
x**n
发帖数: 461
6
你可以在web应用中host一个service, 那个单独的程序向这个service发送数据,然后
service将数据存在application state中,所有的客户就都可以看到了。还有就是可以
像stdio说的那样,用 signalR push 到客户端;或则如果你知道所有客户端都支持web
socket的话,直接用 web socket 就好了。
n*w
发帖数: 3393
7
来自主题: DotNet版 - Web application 的现状和.net
SignalR怎样?

html
p*a
发帖数: 592
8
如果你用微软系列,可以考虑一下signalR
N********n
发帖数: 8363
9
来自主题: Programming版 - .NET对马工还有就业前途吗?

That's strange as websocket is a public protocol that every platform
supports. WCF already has a binding for that. Asp.Net also adds a
SignalR offering similar features at a higher level.
p**r
发帖数: 5853
10
来自主题: Programming版 - 其实有时候google多了会脑残的
公司有个码农今天找我帮他看看signalr的一个bug,
我问了下目的,是为了做一个客户端对服务器端的tracking。
问他这么简单的东西,用毛signal,
他说google到的最简单的方案。
最简单你大爷,哥让他后台写个unique文件,前台js读文件更新ui,搞定。
他说这个好,好像比google的最佳方案还简单。
这google有时候害人,大家都不动脑子,
某一天google突然sky net了,人类真的只有被虐的份。
说完了,各路大神前来拍砖。
l*s
发帖数: 783
11
来自主题: Programming版 - 其实有时候google多了会脑残的
如果只需要支持新浏览器,signalr 不需要timer polling
(共0页)