I have a situation where downloading lot of data results in ConnectionClosed.
>>httpGet: urlString
������ "Get the response from the given url"
������
������ ^ [ ... .get: urlString ]
������ ������ on: ZnEntityTooLarge, ConnectionClosed
������ ������ do: [ : ex |
������ ������ ������ ex isResumable
������ ������ ������ ������ ifTrue: [ ex resume ]
������ ������ ������ ������ ifFalse: [ self handleNonResumableConnection: ex ] ].
I read a mail from Sven you could change a global setting in ZnNetworkingUtils as follows: