On Thu, 2023-06-15 at 15:46 +0200, Oleg Kalnichevski wrote:
> On Thu, 2023-06-15 at 12:29 +0000, Isaac Cruz wrote:
> > Hello everyone,
> > 
> > I'm having issues trying to set an idle timeout on https
> > connections
> > on an asynchronous HTTPS server. This is what I'm doing:
> > 
> >         IOReactorConfig ioReactorConfig = IOReactorConfig.custom()
> >                 .setIoThreadCount(4)
> >                 .setSoTimeout(5000, TimeUnit.MILLISECONDS)
> >                 .setTcpNoDelay(false)
> >                 .setSoReuseAddress(true)
> >                 .setBacklogSize(0)
> >                 .build();
> > 
> > And passing that ioReactorConfig to DefaultListeningIOReactor, and
> > an
> > IOSessionListener to be notified of timed out connections.
> > 
> > So the thing is, for plain http connections, that timeout works (my
> > listener is called after 5 seconds, when the other end stops
> > sending
> > data), but on https connections, it does not work, and I need
> > connections to be closed.
> > 
> > Am I doing something wrong? Is there any other way of closing idle
> > connections?
> > 
> > Thanks and regards,
> > Isaac
> > 
> 
> 

Apologies. What version of HttpCore are you using?

Oleg

> What version of HttpClient are you using?
> 
> Oleg
> 
> 
> > Disclaimer
> > 
> > The information contained in this communication from the sender is
> > confidential. It is intended solely for use by the recipient and
> > others authorized to receive it. If you are not the recipient, you
> > are hereby notified that any disclosure, copying, distribution or
> > taking action in relation of the contents of this information is
> > strictly prohibited and may be unlawful.
> > 
> > This email has been scanned for viruses and malware, and may have
> > been automatically archived by Mimecast, a leader in email security
> > and cyber resilience. Mimecast integrates email defenses with brand
> > protection, security awareness training, web security, compliance
> > and
> > other essential capabilities. Mimecast helps protect large and
> > small
> > organizations from malicious activity, human error and technology
> > failure; and to lead the movement toward building a more resilient
> > world. To find out more, visit our website.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org
> For additional commands, e-mail: dev-h...@hc.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org
For additional commands, e-mail: dev-h...@hc.apache.org

Reply via email to