Transfer files with SuperTCPServer

I need transfer files between server and client, these files have size between 1 kb to 700MB, but on try of transfer i recive erro “Message too large from server”.

It’s possible transfer files of large size ?

If yes, exists parameters for configure to allow transfer files ?

700MB is probably too large to reliably send in one go, even if you do increase the maximum message size (which i’d recommend against; the entire 700MB would be held in memory, possibly multiple times). you’ll want to look at sending the data in chunks; iirc we provide a file transfer sample that illustrates this very idea…