Re: disabling sessions in certain parts of a webapp

2005-11-09 Thread Brian Moseley
Frank W. Zammetti wrote: I can't think of any drawbacks to the filter, and tha's what I would have suggested. Although, it probably doesn't even have to be as complicated as a wrapper... simply check for an existing session for the paths you do want a session created for, and if none is present

disabling sessions in certain parts of a webapp

2005-11-09 Thread Brian Moseley
my web application has three separate interfaces: an html ui, webdav, and a custom http/xml protocol. clients of the latter two interfaces are unaware of the http session, so i'd prefer that sessions not even be constructed when requests come in through those interfaces. i see that StandardMan