How do I upgrade an HTTP connection to a WebSocket using ISAPI?
Can I just send the upgrade header back then negotiate and communicate using WriteClient and ReadClient?
If I installed the "WebScoket Protocol" Server Roles-> Web Server-> Application Development-> WebSocket Protocol
What does that actually do to the IIS server? Should that actually be called "install .net WebSocket Protocol?"
How would one "route" WebSocket upgrades and subsequent conversation to a compiled "C" program?
3 Posts
ISAPI + Web Socket + IIS Web Socket
Mar 23, 2019 05:31 PM|iis_dave|LINK
How do I upgrade an HTTP connection to a WebSocket using ISAPI?
Can I just send the upgrade header back then negotiate and communicate using WriteClient and ReadClient?
If I installed the "WebScoket Protocol" Server Roles-> Web Server-> Application Development-> WebSocket Protocol
What does that actually do to the IIS server? Should that actually be called "install .net WebSocket Protocol?"
How would one "route" WebSocket upgrades and subsequent conversation to a compiled "C" program?
200 Posts
Re: ISAPI + Web Socket + IIS Web Socket
Mar 25, 2019 01:25 PM|Brando Zhang|LINK
Hi iis_dave ,
In my opinion, installed the websocket will allow the IIS use websocket protocol to connect with client.
No, it works with each server-side application which use websocket.
In my opinion, you should let your C program use some library to work with IIS by using WebSocket.
Like this library: https://github.com/tatsuhiro-t/wslay
Best Regards,
Brando