On Mon, Mar 8, 2010 at 11:47 PM, simon simon <[email protected]> wrote: > hi there, > I am using ap_setup_client_block() and ap_get_client_block() methods of API > to read POST request, Request body is being read properly, but there is > another module waiting these data, it never receive it (also use > ap_setup_client_block() and ap_get_client_block() methods) > > Any ideas can solve this?
What role are the modules trying to play? Only one handler can retrieve the body with ap_get_client_block(). n filters can see the body that some handler retrieves. (And ap_get_client_block() isn't the only way for a handler to retrieve the body, but that is beside the point.)
