I suppose that the Get() could be periodically interrupted to send a NOOP.
It is not very smart of the server to timeout a connection when a file operation is being performed though, as obviously the server knows a transfer is going on.
Are you sure this is what is happening, e.g. is there an indication of this in the server's logs?
Note that it is also possible that your firewall could be timing out the connection.
A short-term solution for binary transfers may be to cancel the transfer part way through and then use Resume() to transfer the remainder.
I have found the root cause. On long Get()'s EDT is not sending a periodic NOOP or any other command to keep the connection alive. Then it just hangs. What can be done to solve this, as it is a fairly large issue.
Cheers