The upload is failing (when using the WinGate proxy) with the response
- Code: Select all
HTTP/1.0 411 Length Required
This behavior can be reproduced using the cURL utility
rem ** this works (192.168.1.213 is my proxy)
- Code: Select all
curl --form "upfile=@test.dat" <upload url> --verbose --proxy "192.168.1.213:80"
rem ** this fails
- Code: Select all
curl --form "upfile=@test.dat" --header "Transfer-Encoding: chunked" <upload url> --verbose --proxy "192.168.1.213:80"
I would appreciate any suggestions to get this working; unfortunately we can't modify the client to use non-chunked encoding
Rupert