On Thu, 16 Dec 1999, Tobias Hoellrich wrote:

> I pass a session id in the query string between invocations for my
> current project (only if the client does not support Cookies). My main
> handler is also responsible for creating an Apache::Request object right
> at the beginnig of the handler invocation. sub components rely on the
> information found in the $apr object.
> For GET's everything is fine, for POSTs the Apache::Request->new will
> not look at the query string, because it is a POST. Fine.

that's strange, it's supposed to parse both, see apache_request.c :

int ApacheRequest_parse_urlencoded(ApacheRequest *req)
{
    request_rec *r = req->r; 
    int rc = OK;

    if (r->method_number == M_POST) { 
         ... parse POST body ...
    }

    if (r->args) {
         ... parse query string ...
    }        

    return OK;
}

do you have a tiny case I can try?

Reply via email to