I have some code to move data around via an opentalk server. I am streaming the data to avoid using anonymous ftp since the file sizes may be very large (open to suggestions here) and there are some access issues related to using ftp that we're trying to avoid.
I'm getting connection closed errors even though I'm setting ridiculously high timeouts and always getting a timeout after 20 minutes.
Here is a code snippet, does anyone have experience with this?
broker := RequestBroker newStstTcpAtPort: someNum
and then set a ridiculously high timeout:
client broker requestTimeout: 144000000
Here is the error:
an Opentalk.OtEServerError{Connection Closed}...
the error is coming from Opentalk.RemoteRequest.waitForReply: and if I look at the instance variables I do see my timeout as 144000000.
Karyn Hurley