RE: method to protect webapps from users

2004-10-27 Thread Shapira, Yoav
at Developers List >Subject: Re: method to protect webapps from users > >Peter, > >Is there anything you're doing with the request / response objects that >you couldn't do with Request/ResponseWrappers ? You could have your >filter populate a Request / Response Wrapper

Re: method to protect webapps from users

2004-10-27 Thread Rick Knowles
Peter, Is there anything you're doing with the request / response objects that you couldn't do with Request/ResponseWrappers ? You could have your filter populate a Request / Response Wrapper pair on the first request, and then set the wrapper's request object to the second request when it come

Re: method to protect webapps from users

2004-10-27 Thread Dakota Jack
I definitely would be interested in seeing this code, although I am not sure what your question is. Maybe seeing the code will clear this up. Jack On Wed, 27 Oct 2004 09:23:01 +0100 (BST), [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > hi guys, > > I'm new to this list, but a long time user of

Re: method to protect webapps from users

2004-10-27 Thread peterm
Hi Tim, Currently it is only using servlet spec stuff, but this imposes a few limitations and some extra resource usage, if it became a valve in tomcat it could remove these limitations and extra resource burdens. For this reason I was seeking approval from those involved with the tomcat dev work

Re: method to protect webapps from users

2004-10-27 Thread Tim Funk
If your using Servlet spec features only - move this to tomcat-user. As for including the functionality in tomcat, my preference is no since it is not tomcat specific and can be used by any container. If thats the case - it might be better as a Sourceforge project. ... Unless we create a subproj

Re: method to protect webapps from users

2004-10-27 Thread peterm
Thanks for the guidance Rémy, this is why I'm posting to this list, I just want something in the base build that includes this functionality, so whatever it takes is fine by me :D Pete > [EMAIL PROTECTED] wrote: > >>hi guys, >> >>I'm new to this list, but a long time user of Tomcat. For a long t

Re: method to protect webapps from users

2004-10-27 Thread peterm
EMAIL PROTECTED] > cc: > 27/10/2004 09:23 Subject: method to protect > webapps from users > Please respond to > "Tomcat > Developers Li

Re: method to protect webapps from users

2004-10-27 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: hi guys, I'm new to this list, but a long time user of Tomcat. For a long time now I've had a problem which I'm sure most of you are familiar with ; users. As always happens with any app in development the final tidy up stuff gets left too late and some stuff gets missed o

Re: method to protect webapps from users

2004-10-27 Thread David Cassidy
cc: 27/10/2004 09:23 Subject: method to protect webapps from users Pl

method to protect webapps from users

2004-10-27 Thread peterm
hi guys, I'm new to this list, but a long time user of Tomcat. For a long time now I've had a problem which I'm sure most of you are familiar with ; users. As always happens with any app in development the final tidy up stuff gets left too late and some stuff gets missed out. The bit in this ca