Re: Is there websocket client implementation for D

2019-12-19 Thread kerdem via Digitalmars-d-learn
On Monday, 10 September 2018 at 07:19:03 UTC, Heromyth wrote: On Tuesday, 24 March 2015 at 17:55:38 UTC, Ilya Korobitsyn wrote: Hello! Is there any websocket client implementation in D? I know there is WS server as a part of vibe.d, but it does not seem to include client. Maybe there are some

Re: Is there websocket client implementation for D

2018-09-10 Thread Heromyth via Digitalmars-d-learn
On Tuesday, 24 March 2015 at 17:55:38 UTC, Ilya Korobitsyn wrote: Hello! Is there any websocket client implementation in D? I know there is WS server as a part of vibe.d, but it does not seem to include client. Maybe there are some library bindings that I've missed? We just implemented one

Re: Is there websocket client implementation for D

2018-06-11 Thread kerdemdemir via Digitalmars-d-learn
Hi vibe.d has a client implementation. http://vibed.org/api/vibe.http.websockets/WebSocket It is as simple as : auto ws_url = URL("wss://stream.binance.com:9443/ws/ethbtc@aggTrade"); auto ws = connectWebSocket(ws_url); if ( !ws.connected ) return; while ( true )

Re: Is there websocket client implementation for D

2017-05-21 Thread aberba via Digitalmars-d-learn
On Wednesday, 25 March 2015 at 15:46:31 UTC, Adam D. Ruppe wrote: On Wednesday, 25 March 2015 at 07:12:56 UTC, thedeemon wrote: It's for server side, but probably contains stuff you need for client too. Yeah, I've been meaning to write a client for a while but haven't gotten around to it yet.

Re: Is there websocket client implementation for D

2015-03-25 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 25 March 2015 at 07:12:56 UTC, thedeemon wrote: It's for server side, but probably contains stuff you need for client too. Yeah, I've been meaning to write a client for a while but haven't gotten around to it yet. What you do is make a HTTP request with a particular header, and

Re: Is there websocket client implementation for D

2015-03-25 Thread thedeemon via Digitalmars-d-learn
On Tuesday, 24 March 2015 at 17:55:38 UTC, Ilya Korobitsyn wrote: Hello! Is there any websocket client implementation in D? There's some WebSocket stuff here: https://github.com/adamdruppe/arsd/blob/master/cgi.d It's for server side, but probably contains stuff you need for client too.

Re: Is there websocket client implementation for D

2015-03-24 Thread Rikki Cattermole via Digitalmars-d-learn
On 25/03/2015 6:55 a.m., Ilya Korobitsyn wrote: Hello! Is there any websocket client implementation in D? I know there is WS server as a part of vibe.d, but it does not seem to include client. Maybe there are some library bindings that I've missed? Thank you, Ilya It appears you are on your o

Is there websocket client implementation for D

2015-03-24 Thread Ilya Korobitsyn via Digitalmars-d-learn
Hello! Is there any websocket client implementation in D? I know there is WS server as a part of vibe.d, but it does not seem to include client. Maybe there are some library bindings that I've missed? Thank you, Ilya