: Should this non-servlet specific stuff be moved out of the servlet : package, since it's independent? It does seem like it should be : factored out a little more so that event listeners, etc, can use : things like "stream.file" or "stream.body"
yeah, it makes sense to refactor anything not explicilty depending on javax.servlet.** out of webapp and into the main src tree, so that it can be used in tests. -Hoss
