Hi,
One issue I found when stress testing mod_aspdotnet was that in the asp_net_handler() function, when the call is made to apr_hash_first(conf->pool, sconf->aliases); we should probably be using the request->pool instead of the conf->pool since this pool is going to last until the process exits and apr_hash_first() allocates memory using it. Also, it will fix a crash that I found since every worker thread gets it's own pool in the request object.
Another issue I've noticed when hosting a simple "Hello World" web service is that the memory seems to climb in the Apache process. The requests are identical when running the stress test. Did you guys ever notice any kinds of memory leaks? I'm using the .NET 1.1 CLR and I'm not recycling the Apache process.
Thanks,
Larry.