Re: Httpclient issue with https "org.apache.hc.core5.http2.impl.nio.ClientH2StreamMultiplexer"

2023-05-12 Thread thc202
On 12/05/2023 15:27, Oleg Kalnichevski wrote: On Fri, 2023-05-12 at 15:25 +0100, thc...@gmail.com wrote: On 12/05/2023 14:47, Oleg Kalnichevski wrote: On Fri, 2023-05-12 at 14:17 +0100, thc...@gmail.com wrote: On 12/05/2023 13:27, Oleg Kalnichevski wrote: On Fri, 2023-05-12 at 11:48

Re: Httpclient issue with https "org.apache.hc.core5.http2.impl.nio.ClientH2StreamMultiplexer"

2023-05-12 Thread thc202
On 12/05/2023 14:47, Oleg Kalnichevski wrote: On Fri, 2023-05-12 at 14:17 +0100, thc...@gmail.com wrote: On 12/05/2023 13:27, Oleg Kalnichevski wrote: On Fri, 2023-05-12 at 11:48 +0200, Joan grupoventus wrote: Hi Oleg, After changing this method from: private TlsStrategy

Re: Httpclient issue with https "org.apache.hc.core5.http2.impl.nio.ClientH2StreamMultiplexer"

2023-05-12 Thread thc202
On 12/05/2023 13:27, Oleg Kalnichevski wrote: On Fri, 2023-05-12 at 11:48 +0200, Joan grupoventus wrote: Hi Oleg, After changing this method from: private TlsStrategy getTLSStrategy() throws Exception {   return (DefaultClientTlsStrategy.getDefault()); } To: private TlsStrategy

Re: How to set single-cookie-header with the 4.3 API?

2014-05-06 Thread thc202
Hi. From the Chapter 3 of HttpClient Tutorial [1] it seems that that can be achieved by registering a CookieSpecProvider [2], for example, and using BestMatchSpecFactory [3]: RegistryCookieSpecProvider r = RegistryBuilder.CookieSpecProvider create() // override default behaviour of

Re: Cookie spoofing issue using Commons Http Client 3.1

2013-12-09 Thread thc202
Hi. One thing I forget to add which might of use, my application is acting as a proxy in here. It accepts requests from a client and proxies it to a server thus manually getting all the headers and setting the headers manually in the HttpClient. (I will assume that the cookie management