ahikaz
ahikaz

Reputation: 61

WCF connect to Websocket server

Which library should i use to connect my WCF Service (remote) to a Websocket server ?

I found this library Microsoft.ServiceModel.Websocket.dll but i didn't found how to use in the case where the webservice is the client and not the server.

PS : I'm using .net 4.0.

Thanks!

Upvotes: 0

Views: 984

Answers (1)

m0sa
m0sa

Reputation: 10940

You would need a WCF binding with websocket protocol support. Unfortunately it doesn't exist in .net 4.0.

It will be available in .net 4.5, though.

Upvotes: 1

Related Questions