Re: [EMAIL PROTECTED] How Apache manages all its children - Add More Info

2006-08-14 Thread jayaram . g
Hi, I just tested with a use case which is having some bug in one of my components after modifying the mod_echo module. My finding is that if one thread execution is having a bug it kills all other threads also( I have atransaction in one thread. So all transactions are in trouble). But Apache reco

Re: [EMAIL PROTECTED] How Apache manages all its children - Add More Info

2006-08-14 Thread jayaram . g
Hi, In windows Apache creates 2 processes. Prefork is not supported on wondows. Process 1 has minimum  of three threads as below. worker_main ( actall thread which does the work coded in modules. More threads are spawned accoding to the configuration on httpd.conf ) winnt_accept and __tmainCRTS

Re: [EMAIL PROTECTED] Apache 2.2.3 for Windows compile - DLL search order - help needed

2006-08-13 Thread jayaram . g
Hi, Can sombody help me to set up Apache to load dlls of Oracle? The Path environment variable is having the path of Oracle dlls. But Apache is not searching in that order. What is to be done so that Apache searches in Path also for DLLs if not found? Thanks, Jayaram hunter <[EMAIL PROTECTED]>

[EMAIL PROTECTED] Apache module and Oracle connectivity - PRO*C failing - Help Help

2006-08-11 Thread jayaram . g
Hi, I am trying to load my test module from Apache. The test module is a DLL which is loaded by Apache using LoadLibraryExw call. When I add PRO*C/C++ code and link with orasql9.lib then the LoadLibrary call is failing. The PRO*C code is below. Please Help me.   #ifdef WIN32 __declspec( dl

Re: [EMAIL PROTECTED] problem after upgrade from Apache 2.0.49 to 2.0.58

2006-08-09 Thread jayaram . g
Hi, First find the location of the the shared library  libgcc_s.so.1. You can use the command $>cd / $>find . -name libgcc_s.so.1 Once you find the diractory you have to update the LD_LIBRARY_PATH variable. Append the directory path as below. $> export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:   To test

[EMAIL PROTECTED] LoadModule failed in windows - Help Help Help

2006-08-09 Thread jayaram . g
Hi All,                 os_handle = LoadLibraryExW(wpath, NULL, 0);                 if (!os_handle)                         os_handle = LoadLibraryExW(wpath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);                 if (!os_handle) is not able to load my customised mod_echo.so in Windows. I link an a

Re: [EMAIL PROTECTED] Help Needed in Integrating modules with Apache Windows

2006-08-09 Thread jayaram . g
Hi All, can somebody help me to get a big static library to be linked to the mod_echo module?  I modified the baseaddress.ref as below ; os/win32/BaseAddr.ref contains the central repository ;                       of all module base addresses ;                       to avoid relocation ; WARNI

[EMAIL PROTECTED] Help Needed in Integrating modules with Apache Windows

2006-08-09 Thread jayaram . g
Hi All, I have a static library of 8 mb size. I have a function in that static library to which I take the input from mod_echo and the response I get from that I send back. But in Windows I am getting a link warning 4013. The module mod_echo is not  getting loaded if I link the huge static librar

Re: [EMAIL PROTECTED] Info needed to set up MPM in Windows.

2006-07-30 Thread jayaram . g
Hi,  I have a doubt. Suppose my Apache is processing 10 transaction in 10 threads in Windows. In the execution path of one thread there is a bug and it gives me core. What will happen then in Windows? Will it kill the process or only that particular thread? I don't want all the 9 transactions exe

[EMAIL PROTECTED] Info needed to set up MPM in Windows.

2006-07-29 Thread jayaram . g
Dear ALl, I want to configure the Windows mpm-nt in Apache 2.2. The setup should be, when I start Apache 5 processes of Apache should start and each processes should not have more than one thread(I mean only main thread of the process should run.). This is similar to thr pre-fork of Solaris. I have