Re: [jetty-users] Code migration from 9.3.x to 9.4.x

2017-02-01 Thread Jan Bartel
And in case you haven't seen it, there's also the porting guide for sessions: https://www.eclipse.org/jetty/documentation/9.4.x/upgrading-jetty.html#_session_management Yes, you need the HouseKeeper to perform scavenging, and you set the HouseKeeper on the DefaultSessionIdManager. The

Re: [jetty-users] "early EOF" warning when https call from old application in 9.2.9.v2015022er

2017-02-01 Thread David Persson
Thanks both. (And good to know Simone ) Jetty9 server: Bits of my start.ini (installed as windows service) are being ignored, like send server version, and now javax.net.debug=all. In prunmgr however adding -Djavax.net.debug=all made the logging very active indeed. For every :443/../rest call

Re: [jetty-users] Code migration from 9.3.x to 9.4.x

2017-02-01 Thread Jesse McConnell
Not sure if you have seen the new session docs here: https://www.eclipse.org/jetty/documentation/9.4.x/session-management.html source wise, might be quickest to take a look at the tests for jdbc sessions here:

Re: [jetty-users] Another newbie-9.x-user question

2017-02-01 Thread Simone Bordet
Hi, On Wed, Feb 1, 2017 at 10:21 AM, John English wrote: > Here's what I see in my request logs, which shows the problem more clearly. > I have a 404 page in my webapp, and I define a list of virtual hosts. Here's > what I see in the request log: > > Request to 127.0.0.1

Re: [jetty-users] Another newbie-9.x-user question

2017-02-01 Thread John English
On 25/01/2017 19:40, Chris Walker wrote: John, You certainly can define pages to show for a particular error. Hi Chris, Here's what I see in my request logs, which shows the problem more clearly. I have a 404 page in my webapp, and I define a list of virtual hosts. Here's what I see in the

Re: [jetty-users] Jetty 9 logging question

2017-02-01 Thread John English
On 01/02/2017 08:34, Chris Walker wrote: John, I believe based on your original email you are using Jetty 9.4.x with the /console-capture/ module installed. The easiest way to accomplish the separation would be the following: 1. Copy the ${jetty.home}/etc/console-capture.xml file to

Re: [jetty-users] Jetty 9 logging question

2017-02-01 Thread John English
On 01/02/2017 07:18, Greg Wilkins wrote: John, we need some more info to really help you out. Firstly, exactly which version of jetty 9? There are some significant differences between 9.2.x, 9.3.x and 9.4.x in logging. But if I had to guess, I'd say that you are running 9.4 and have the

[jetty-users] Code migration from 9.3.x to 9.4.x

2017-02-01 Thread Ivan Furnadjiev
Hi all, In RAP project we are using embedded Jetty for our cluster tests with sessions persistence in H2. Our implementation is based on the example shown in [1]. The code which we are using in Jetty 9.3.x is: - public SessionManager createSessionManager( Server server ) {