> On Jan 8, 2020, at 4:15 PM, Jim Labos - infobase via 4D_Tech > <[email protected]> wrote: > > No I am using just plain File object to send file. On the 4D side I use WEB > Get body part count and WEB GET BODY PART. No chunking that I know of unless > 4D is doing itself (which by the way I don't know why they didn't implement > that themselves since they give us a 2GB limit).
The client and the server have to agree on sending with the chunked protocol. This is obviously not supported by WEB GET BODY PART. That means you would have to code the transfer yourself using WEB GET HTTP BODY (using chunked encoding) and then you will have to parse the multi-part form yourself because you can't use WEB GET BODY PART. I did something like this aeons ago using ITK before 4D's web server was implemented. Even if I could find the code, I don't think it would be much help. John DeSoi, Ph.D. ********************************************************************** 4D Internet Users Group (4D iNUG) Archive: http://lists.4d.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:[email protected] **********************************************************************

