Hi all ! I've been using HttpClient 3.1 for quite a while now to do multipart file uploads to an http server. I've added a quick hack to FilePart.sendData in order to know how many bytes are being written to the outputStream and have an idea of the progress of the upload. This has been working fine for a while now. But lately I've been also making sure that everything worked fine when uploading through a proxy that requires NTLM authentication, and I noticed that the content is read and sent to the outputStream three times, probably once for the each authentication stage and once for the actuel upload to the server. This doesn't happen over HTTPS connections, only HTTP connections (I tested that I'm going through the proxy for both types of connections) Is this normal ? Is there a way to prevent this ? Thanks !
Sebastien Nussbaumer
