RE: [EMAIL PROTECTED] r->notes among apache modules

2007-08-07 Thread Ravi Prakash
ion Ravi -Original Message- From: Eric Covener [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 07, 2007 6:39 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] r->notes among apache modules On 8/7/07, Ravi Prakash <[EMAIL PROTECTED]> wrote: > Hi Eric , > > Can u sug

RE: [EMAIL PROTECTED] r->notes among apache modules

2007-08-07 Thread Ravi Prakash
ong apache modules On 8/7/07, Ravi Prakash <[EMAIL PROTECTED]> wrote: > I am using r->notes to maintain values of some variables among apache > modules. > .. > I opend the two Browsers and called Handler of Module A first and then on > 2nd Brower, I called handler o

[EMAIL PROTECTED] r->notes among apache modules

2007-08-07 Thread Ravi Prakash
Hi, I am using r->notes to maintain values of some variables among apache modules. I am setting values in r->notes table in a module as follows: /* Under Module A */ static int A_handler (request_rec *r) { apr_table_t *table=NULL; table=apr_table_make(r->pool,1); apr_table_set(r->n

[EMAIL PROTECTED] Provide solution If u have

2007-08-03 Thread Ravi Prakash
Hi, I am Ravi, working as a open source developer. I am working on Apache Modules. I have two modules A and B. 1. By browser, Module A get request for a service type. 2. Module A checks its service type. 3. Now It passes the whole request to Module B as its output( not to b

RE: [EMAIL PROTECTED] How two modules can interact ?

2007-07-26 Thread Ravi Prakash
ursday, July 26, 2007 2:47 AM Subject: Re: [EMAIL PROTECTED] How two modules can interact ? > On 26/07/07, Ravi Prakash <[EMAIL PROTECTED]> wrote: >> I am working on apache modules. Till now, I am not able to understand, >> How >> apache modules interact to each o

[EMAIL PROTECTED] How two modules can interact ?

2007-07-26 Thread Ravi Prakash
Hi, I am working on apache modules. Till now, I am not able to understand, How apache modules interact to each other. What all APIs are there that can send or receive data from one module to another module running under same apache? Kindly ,Help me by giving some related links or tutorials .

[EMAIL PROTECTED] can anyone answer plz

2007-06-28 Thread Ravi Prakash
Hi, I want to know the functionality of ap_getword_conf( ) . How does it work ? Is any equivalent C string library function ? Please , make it clear by an example. Thanks Ravi

[EMAIL PROTECTED] Give me Solutions

2007-06-07 Thread Ravi Prakash
Hi, I am compiling my program using following syntax : # gcc -I /usr/local/ssl/include -I /usr/local/mysql/include -I /usr/local/apache2/include -L /usr/local/ssl/lib -lcrypto -lssl -L /usr/local/mysql/lib/mysql -lmysqlclient -L /usr/local/apache2/lib -lapr-0 -laprutil-0 ts.c It is

RE: [EMAIL PROTECTED] question

2007-05-30 Thread Ravi Prakash
@httpd.apache.org Subject: Re: [EMAIL PROTECTED] question On 5/30/07, Ravi Prakash <[EMAIL PROTECTED]> wrote: > > I want certificate based authentication among remotely located apache > > modules just like client/server authentication. Does mod_ssl provides > > any mechanism to do it?

[EMAIL PROTECTED] question

2007-05-30 Thread Ravi Prakash
Hi, I want certificate based authentication among remotely located apache modules just like client/server authentication. Does mod_ssl provides any mechanism to do it? If no, how can I authenticate a module to a remote module ? Thanks Ravi

[EMAIL PROTECTED] My Question

2007-05-30 Thread Ravi Prakash
An apache module running on one machine, wants to communicate with another module running under apache on remote machine.The communication should be authenticated by using certificates on both sides. Does mod_ssl plays any role to authenticate the module certificates, without requiring any con