Croteau, Beau wrote:
> I'm sorry, I don't understand the question.
>
> Mod_gsoap hooks in as such:
> static void
> gsoap_hooks(apr_pool_t * p)
> {
> // I think this is the call to make to register a handler for method
> calls (GET PUT et. al.).
> // We will ask to be last so that the comment has a higher tendency
> to
> // go at the end.
> ap_hook_handler(gsoap_handler, NULL, NULL, APR_HOOK_LAST);
>
> //Register a handler for post config processing
> ap_hook_post_config(gsoap_init, NULL, NULL, APR_HOOK_MIDDLE);
> }
>
[snip]
I think we need to know if you create the thread in the gsoap_init
function or the gsoap_handler function (not a copy of the register_hooks
function, but which hook that register_hooks uses to create the thread).
Joe