Hello,
I am trying to adjust the amount of time that Jetty keeps a session alive before timing it out. For the application I am using I want to set it to around 30 seconds (it has a custom client that polls far more often than that). I have done what I think is the correct setting but the timeout still takes around 10 minutes.
sslConnect.setMaxIdleTime(30000);
I am using jetty6.1.7 as an embedded web server. Any help would be greatly appreciated!
Colin