[Bug 55595] Request parameter parsing is not thread-safe

2013-09-26 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55595 --- Comment #5 from Chuck Caldarale --- (In reply to Brian Tajuddin from comment #4) > Wrapping the request seems reasonable on the surface, but it forces the > application to assume that the data structures underneath the parameters > cann

[Bug 55595] Request parameter parsing is not thread-safe

2013-09-26 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55595 --- Comment #4 from Brian Tajuddin --- We are actually trying to avoid the simple user land solution. This would prevent any processing that does not depend on the parameters from starting before the parameters are parsed. Since parsing par

[Bug 55595] Request parameter parsing is not thread-safe

2013-09-26 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55595 --- Comment #3 from Tim Funk --- In user land - the simple solution is to perform a request.getParameter("anything") before the multithreaded logic is executed. This will trigger the parsing of the request parameters. Then the multithread

[Bug 55595] Request parameter parsing is not thread-safe

2013-09-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55595 --- Comment #2 from Christopher Schultz --- A bit more commentary to avoid grumbling: 1. While uncontended locks are cheap, they still have a cost that nobody else wants to pay. 2. If you need to access request parameters from multiple th

[Bug 55595] Request parameter parsing is not thread-safe

2013-09-25 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=55595 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---