Re: How to recursively accept data from Python server ?

2021-06-25 Thread Utk via Digitalmars-d-learn
On Friday, 25 June 2021 at 05:46:54 UTC, Utk wrote: On Friday, 25 June 2021 at 03:27:24 UTC, jfondren wrote: On Friday, 25 June 2021 at 02:55:50 UTC, Utk wrote: Please help me to resolve this issue. Try stracing your program to see exactly what it's doing with the socket, and try

Re: How to recursively accept data from Python server ?

2021-06-24 Thread Utk via Digitalmars-d-learn
On Friday, 25 June 2021 at 03:27:24 UTC, jfondren wrote: On Friday, 25 June 2021 at 02:55:50 UTC, Utk wrote: Please help me to resolve this issue. Try stracing your program to see exactly what it's doing with the socket, and try std.socket's lastSocketError I tried using

Re: How to recursively accept data from Python server ?

2021-06-24 Thread jfondren via Digitalmars-d-learn
On Friday, 25 June 2021 at 02:55:50 UTC, Utk wrote: Please help me to resolve this issue. Try stracing your program to see exactly what it's doing with the socket, and try std.socket's lastSocketError

Re: How to recursively accept data from Python server ?

2021-06-24 Thread mw via Digitalmars-d-learn
Not sure if you want build interprocess communication utility all by yourself, I'm currently using https://code.dlang.org/packages/apache-thrift and there is also https://code.dlang.org/packages/symmetry_thrift_d BTW grpc is not quiet working https://code.dlang.org/packages/grpc

How to recursively accept data from Python server ?

2021-06-24 Thread Utk via Digitalmars-d-learn
Hello! I'm trying to establish a connection between a python server and a d client. The data is been transferred properly only once and then the d client doesn't wait for any further data and returns an error ```Socket.ERROR``` and exists and doesn't wait for further incoming data from the