RE: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread Bruno Georges
2006 15:06 À : Tomcat Users List Cc : users@tomcat.apache.org Objet : Re: Way to force Tomcat not to send headers in its http response. Francois I would use a Servlet Filter to do this. It is a standard, not tomcat specific and it allows you to decouple the header processing from your existing ser

RE: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread Bruno Georges
To: "Tomcat Users List" | |cc: | | Subject: RE: Way to force Tom

Re: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread Tim Funk
.org Objet : Re: Way to force Tomcat not to send headers in its http response. Francois I would use a Servlet Filter to do this. It is a standard, not tomcat specific and it allows you to decouple the header processing from your existing servlet and it is also very flexible. you will be handle

RE: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread COURTAULT Francois
er 2006 15:06 À : Tomcat Users List Cc : users@tomcat.apache.org Objet : Re: Way to force Tomcat not to send headers in its http response. Francois I would use a Servlet Filter to do this. It is a standard, not tomcat specific and it allows you to decouple the header processing from your existing ser

Re: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread Tim Funk
: Tim Funk [mailto:[EMAIL PROTECTED] Envoyé : vendredi 6 janvier 2006 14:17 À : Tomcat Users List Objet : Re: Way to force Tomcat not to send headers in its http response. This is a little vague. Are there certain headers which must NOT be

Re: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread Bruno Georges
Francois I would use a Servlet Filter to do this. It is a standard, not tomcat specific and it allows you to decouple the header processing from your existing servlet and it is also very flexible. you will be handle to handle both HTTP response and request headers. Hope this helps. Bruno Georges

RE: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread COURTAULT Francois
All the headers ! Regards. PS: Is there also a way to not send the ack http response (ie HTTP/1.1 200 OK) ? -Message d'origine- De : Tim Funk [mailto:[EMAIL PROTECTED] Envoyé : vendredi 6 janvier 2006 14:17 À : Tomcat Users List Objet : Re: Way to force Tomcat not to send heade

Re: Way to force Tomcat not to send headers in its http response.

2006-01-06 Thread Tim Funk
This is a little vague. Are there certain headers which must NOT be sent? -Tim COURTAULT Francois wrote: Hello, Do you know if there is a way to force Tomcat not to send http headers in its http response ? Regards. - To