Very long connection establishment #2661
-
I have this slice interface
When i launch client and trying to connect to server, all doing good until i call createFluidPackage. This call reaches the server only after +-45 seconds, and for some reason, he establishes the TCP connection again, despite the fact that it was set up at the beginning. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Without seeing your code it's hard to say why a new connection is being established. Are you using ACM? One potential reason for slow connection establishment could be if your proxy has some unreachable endpoints. Eg. endpoints that are local to the server's internal network but that the client doesn't have access to. Looking at your sever log, your server is listening on public and private network interfaces. What are the proxy's endpoints? |
Beta Was this translation helpful? Give feedback.
-
Thank you for aiming. That was problem. Server used 0.0.0.0 as host address, all resolved. |
Beta Was this translation helpful? Give feedback.
Without seeing your code it's hard to say why a new connection is being established. Are you using ACM?
One potential reason for slow connection establishment could be if your proxy has some unreachable endpoints. Eg. endpoints that are local to the server's internal network but that the client doesn't have access to. Looking at your sever log, your server is listening on public and private network interfaces.
What are the proxy's endpoints?