At 11:43 AM 10/22/2004, Nathanael Noblet wrote: >Quick question > Can/Should something be designated as a filter AND a handler? For example the > filter would pre-process the request such as POST data etc. The handler would work > on what the filter setup? Or do I completely not understand the Apache module struct?
Depends on what you want to do. The core handler can always do the heavy lifting for you, and better yet, if you replace the core when serving sql data or some other source, your 'filter' can still be run against the data. If your module -is- a data store (think an sql database, a compressed archive system, or something like that), then it most definitely should be a handler. > Is there another place to discuss 3rd Party modules? the modules list given > on the http://httpd.apache.org/lists.html doesn't exist anymore? Did you try [EMAIL PROTECTED] We've rearranged some infrastructure, so I've asked Adam to research ASAP. Thanks, Bill
