Apache Http Client multipart/form-data with chunking

2019-01-19 Thread Mojgan
We have implemented chunked upload for large files on our server. Client sends a multipart/form-data request with chunking. It works fine using Java Jersey and curl clients as the chunks come in the format specified per HTTP Spec; however, the Apache HttpClient sends chunks not per HTTP Spec:

Re: HttpClient 4.5 - make NTLM highest precedence authenticator when using HttpClientBuilder

2019-01-19 Thread Oleg Kalnichevski
On Sat, 2019-01-19 at 11:29 +1100, Chris Mugdan wrote: > Hi, > > I am using HttpClientBuilder to create an HttpClient with NTLM > authentication, but looking at the logs it tries SPNEGO first then > NTLM. > Since I am only interested in NTLM, to increase the efficiency of > requests I want it

HttpClient 4.5 - make NTLM highest precedence authenticator when using HttpClientBuilder

2019-01-19 Thread Chris Mugdan
Hi, I am using HttpClientBuilder to create an HttpClient with NTLM authentication, but looking at the logs it tries SPNEGO first then NTLM. Since I am only interested in NTLM, to increase the efficiency of requests I want it to be the first authenticator tried. How do I do this when I am