Hi,
I am Ravi, working as a
open source developer. I am working on Apache Modules.
I have two modules A and B.
- By browser, Module A get
request for a service type.
- Module A checks its service type.
- Now It passes the whole request
to Module B as its output( not to browser at this moment)
- Module B process the request
& sends back processed data to Module A.
- Now Module A sends that
processed data to browser.
So Module A can be regarded as a intermediate module .
I want to know , how a module can send data to another
Module Under same apache.? Is there any API for that ?
What will be the case if we have two different apache on
different machines ?
Ravi