The current Adaptor Apache2.2 won't work, refusing to handle requests offered to it.
This is due to line 676 and 708 in /Wonder/Adaptors/Apache2.2/mod_WebObjects.c
676: r->handler = (char *)apr_pstrdup(r->pool, WEBOBJECTS);
708: if (NULL == r->handler || strcmp(r->handler, WEBOBJECTS) != 0) {
The WEBOBJECTS macro has capital letters in it. The APR library with Apache 2.2 converts the string to all lower case. So on line 708 the comaprison fails between an all lower case string and one not. The module then declines to handle the request.
gnuloki@gmail.com
Logged In: NO
Slight correction, I don't know what actually changes the handler string to lower case but it is occuring.