-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no answer from server on really fast computers #60
Comments
Hi, can you tests with the small example in |
I will try a single unittest using only jcon client / server. |
Only a chunk. See documentation of the |
This sounds to be another kind of problem, running the small exemple program , the log is : so, I will check if a process uses that port... JSON RPC server: listening on port 6002 client : |
Hi, "server error: Error listening" seems to indicate your port 6002 might already be in use. Try : Edit: On the other hand I added an auto try to connect feature on the client side on top of jcon because if the client is started before the server it fails to connect. On a fast machine the order of process launch may differ. Best regards |
There is a process named spnsvrt.exe using this port 😟 |
Hi, you can choose whatever free port you want from 1024 to 65535. Try 6003 ;) You can find a free port by using (edit) QTcpSocket::localPort() : https://stackoverflow.com/questions/34678938/platform-independent-qt5-way-to-get-open-tcp-port You can start your server or client passing the port as an argument on the command line. Best regards |
Hi,
I had a client (python) / server (jcon) program running fine in a windows 7 computer.
I launched the same program on a really fast computer (3Ghz) and the requests are not seen from the server side .
The socket is connected, but there is no answer from server when making client requests.
What could be the problem ?
The text was updated successfully, but these errors were encountered: