Re: [jetty-users] LoginService Issue with latest jetty

2019-10-09 Thread Lachlan Roberts
Hi, I can't see any behavioural changes to LoginAuthenticator and SecurityHandler since 9.4.13 which could cause this. How are you expecting to get a LoginService? do you add it as a bean on the server, set it directly on SecurityHandler, etc.. On Wed, Oct 9, 2019 at 7:59 PM Sai Sankar Challa <

[jetty-users] LoginService Issue with latest jetty

2019-10-09 Thread Sai Sankar Challa
Hi Guys I updated the my karaf environment from 4.2.2 to 4.27 and with which jetty is updated from 9.4.13.v2018 to 9.4.20.v20190813. After this change, though rest all are working my web application which does certificate authentication not working. Can you guys suggest any known issues or

Re: [jetty-users] Should fully consume the InputStream of InputStreamResponseListener before close it?

2019-10-09 Thread Đạt Cao Mạnh
Oh that totally makes sense! Thanks a lot for clarifying! ___ jetty-users mailing list jetty-users@eclipse.org To change your delivery options, retrieve your password, or unsubscribe from this list, visit

Re: [jetty-users] Should fully consume the InputStream of InputStreamResponseListener before close it?

2019-10-09 Thread Greg Wilkins
Close on the input stream will not close the connection. But it will cause the server that is writing content to have a broken pipe exception and then they will close the connection. If the server is not confident the request/response cycle has completed normally, then it will close the

Re: [jetty-users] Should fully consume the InputStream of InputStreamResponseListener before close it?

2019-10-09 Thread Đạt Cao Mạnh
Hi Greg, I just want to confirm, close() here is called on InputStream. By calling that it will close the underlying connection too? And it even true in case of HTTP/2? Thanks a lot! Vào Th 4, 9 thg 10, 2019 lúc 05:28 Greg Wilkins đã viết: > > Cao, > > The answer is "it depends". > > Closing