http://qs321.pair.com?node_id=1099048


in reply to Apache::RequestNotes in mod_perl 2.0

I noticed that Apache::RequestNotes doesn't seem to be available for Apache2 so I am guessing that this functionality was incorporated in mod_perl 2.0 natively?

No, it was never part of mod_perl, the mod_perl folks don't maintain that module

If so, would someone kindly point me to an example on how to do this exact same thing with mod_perl 2?

Um, port the module? Apache2::compat, Apache2::porting ...

  • Comment on Re: Apache::RequestNotes in mod_perl 2.0

Replies are listed 'Best First'.
Re^2: Apache::RequestNotes in mod_perl 2.0
by ait (Hermit) on Sep 01, 2014 at 15:19 UTC

    Thanks but the question was more like: is there a native way in mod_perl 2.0 way to process form parameters very early in the request?

    Anyway, this paragraph on Apache::RequestNotes FEATURES/BUGS: "Since POST data cannot be read more than once per request, it is improper to both use this module and try to gather...", told me that our current solution is doing the right thing by slurping/processing content early on and the re-injecting in an input filter later to make content avail for later handlers and other modules (e.g. mod_proxy, etc.). It would be cool though if there was some native form-parameter handlers like Apache::RequestNotes avail for mod_perl 2.x. and that would conserve content for the rest of the cycle and other handlers. This would be very useful to translate broken content-driven APIs to more URL-driven APIs.

    The reason we need to do this is because nowadays there are many API's that are called "RESTful" but that do not not use resource-based URLs so many times you need to inspect content early on to trap/route a request accordingly. Man, if people would actually understand HTTP to begin with, we would have to be constantly hacking away to make stupid code work right.