2 way communication over http between a .Net service and Windows Forms Client
Posted
by
user1802969
on Stack Overflow
See other posts from Stack Overflow
or by user1802969
Published on 2013-10-25T03:49:28Z
Indexed on
2013/10/25
3:53 UTC
Read the original article
Hit count: 235
I am looking to accomplish 2 way communication over http between a .Net service (WCF SOAP or REST, both options are open) hosted on IIS 7 and Windows Forms Client running on Windows 7.
WebSockets are not supported with IIS 7 and all other Comet techniques allow only the web server to push data to client and not the other way around.
The client will be very chatty, and there are thousands of clients, so I want to avoid creating a new HTTP request for each message to the server, though that is the last option.
Is there any way to do this ?
© Stack Overflow or respective owner