Re: Ideal way to minimize resources used by Tomcat for sessions

2012-11-18 Thread Baron Von Awsm
Hi Jens It is a requirement that I set up an http/s end point that runs in Tomcat. This is a question about the best way to minimise session management resources in Tomcat. I don't want my post to get side-tracked on a debate quibbling about my requirements. I'm after subject matter expertise whe

Re: Ideal way to minimize resources used by Tomcat for sessions

2012-11-18 Thread mailingl...@j-b-s.de
Why do you need a Webserver at all? What about plain Java Sockets instead? Jens Von meinem iPad gesendet Am 19.11.2012 um 03:34 schrieb Baron Von Awsm : > My web app consists of a single servlet, no JSPs and no static content. The > servlet retrieves XML from POST submissions and hands the XML

Ideal way to minimize resources used by Tomcat for sessions

2012-11-18 Thread Baron Von Awsm
My web app consists of a single servlet, no JSPs and no static content. The servlet retrieves XML from POST submissions and hands the XML and IP address of the client to an API/engine. This engine can work outside of a web container and has no knowledge of a web container. It has its own mechanism

Re: Modify Cache-Control header

2012-11-18 Thread Terence M. Bandoian
On 11/16/2012 2:38 PM, Jose MarĂ­a Zaragoza wrote: Hi: I'm using Tomcat 6 ( I don't remember the exact release, I hope to be forgiven by Pid ) I need to modify Cache-Control header in some responses ( forcing them to not be cached ) What is the best way to do it ? a) To implement a Valve ( che