[users@httpd] httpd apache- How to deal with large number of threads(multiple connections)

2014-05-27 Thread Vadim Blumkin
Hello all, First of all , this is my first question in this forum ,so if I am doing something wrong ,please let me know . As part of my job, I started using Apache 2.4.9 version on Windows Platforms and one of our requirement is to support Signal-R and WebSockets multiple connections. Plea

[users] instructions - How to compile apache 64 bit on Windows platforms

2014-06-08 Thread Vadim Blumkin
Hi, Is the any instructions how compile sources of httpd apache 64 bit on Windows platform ? (including openssl , zlib , lixml2 modules ) Thanks a lot, Vadim

Re: [users] instructions - How to compile apache 64 bit on Windows platforms

2014-06-09 Thread Vadim Blumkin
Thanks a lot, Guy , I will check it. Vadim On Sun, Jun 8, 2014 at 6:18 PM, Good Guy wrote: > On 08/06/2014 14:04, Vadim Blumkin wrote: > > > > Hi, > > > > > > > > Is the any instructions how compile sources of httpd apache 64 bit on > > Windows

[users@httpd] how to identify number of working threads

2014-06-19 Thread Vadim Blumkin
Hi all Is there any way to find how many concurrent opened threads are working at the moment ? I found that there is a mod_status module can perform some statistics , but didn't find any parameter point to opened threads. Thanks, Vadim

Re: [users@httpd] how to identify number of working threads

2014-06-19 Thread Vadim Blumkin
Thanks a lot , Eric , Frederik I didn't notice it . Vadim On Thu, Jun 19, 2014 at 3:29 PM, Eric Covener wrote: > On Thu, Jun 19, 2014 at 8:26 AM, Vadim Blumkin > wrote: > > Hi all > > > > > > > > Is there any way to find how many concurrent opene

[users@httpd] debug httpd with windbg

2014-08-03 Thread Vadim Blumkin
Hi, Is there any way to debug httpd process with Windbg ? We have Apache installed on Windows x64 OS , when I can see two processes in the Task Manager . I want to debug the child process because it’s is actually handles all the requests . But Windbg cannot connected to the apache child proc

[users@httpd] URL is decoded when it should be forwarded as is

2014-08-17 Thread Vadim Blumkin
Hi, I encountered with some problem when HTTP delete URL contains special characters like , ‘?/.’ Apache receives following URL: DELETE /filter/delete/test%3Fname HTTP/1.1 But instead of sending it as is , apache is doing decoding and sending it like this: DELETE /filter/delete/test?na

Re: [users@httpd] URL is decoded when it should be forwarded as is

2014-08-17 Thread Vadim Blumkin
Thanks, Eric Do you mean something like this ? RewriteCond %{THE_REQUEST} ^/filter/(.*) RewriteRule ^/filter/(.*)$ http://127.0.0.1:7001/$1 [R] Thanks, Vadim On Sun, Aug 17, 2014 at 3:19 PM, Eric Covener wrote: > On Sun, Aug 17, 2014 at 7:59 AM, Vadim Blumkin > wrote: > > Bu