signalr - asp.net 5 web application with websockets on Windows 7 -
i have relatively simple web application porting asp.net 5. current version runs under iis on windows 7 , server 2008 machines. next version of software connect c++ client via signalr web application. problem current version of new signalr-cpp client supports signalr via websockets. iis on windows 7 , server 2008 not support websockets, though. since self-hosting solution fine me, question is:
is possible support signalr via websockets on windows 7 / server 2008 when web app self-hosted?
update:
i accept does self hosted signalr require windows server 2012 in order use websockets? answer if there wasn't small comment damian edwards in following tweet david fowler says
although, v3, websockets in self-hosted server (like katana) possible
does change situation?
final update
at least beta 6 works on windows 7 when hosting app kestrel , including middleware microsoft.aspnet.websockets.server.
it's not possible...
for signalr use websockets, windows server 2012 or windows 8 required
does self hosted signalr require windows server 2012 in order use websockets
http.sys prior windows 8/2012 has no built in support websockets, although .net 4.5 contains websocket classes, won't work unless running .net 4.5+ on windows 8/2012 , affect self-hosting solutions running in windows < 8.
update: answer valid current release version of signalr (2.2). tweets included (quite old btw) suggest possible in v3 not released yet, there not info on internet changes\features of release , can't find websocket support in katana on win < 8 in list of github issues v3
Comments
Post a Comment