Re: How to issue a subrequest in my module

2007-11-20 Thread John Zhang
--- Joe Lewis wrote: > John Zhang wrote: > > I have a module (act as a filter or handler). > While > > processing a request, I encountered a url (similar > to > > an include, eg /foo/bar.xyz, or abc.txt). How can > I > > 1) ask apache to process this request and > > 2) give me the res

Re: How to issue a subrequest in my module

2007-11-20 Thread Joe Lewis
John Zhang wrote: > I have a module (act as a filter or handler). While > processing a request, I encountered a url (similar to > an include, eg /foo/bar.xyz, or abc.txt). How can I > 1) ask apache to process this request and > 2) give me the result back (I am waiting for it > before I

How to issue a subrequest in my module

2007-11-19 Thread John Zhang
I have a module (act as a filter or handler). While processing a request, I encountered a url (similar to an include, eg /foo/bar.xyz, or abc.txt). How can I 1) ask apache to process this request and 2) give me the result back (I am waiting for it before I can continue)? I got an answe