I've started using HttpClient in place of my API based WinHttp object.
One test used SendRequest to send a string that was 138,000 bytes and it just hangs.
I checked the help and it says that there is a limit of about 20 MB. The limit appears to be much lower in my testing.
Now I am trying PostData. The help example has the string being broken up into 1024 chunks and passed to PostData in a loop.
For my first try I sent the whole string with a single call to PostData and it worked.
My questions are:
Is there a maximum size for PostData?
When chunking data, what is the best size speed-wise?
Did you encounter the same issue on other client machines or Server API?