Hi,
I'm working on an apache filter that monitors the web server activity.
as part of participation with pther parts of the monitoring application, it sets a request heaader based on the url parameters. till here it is simple.
the problem is that on post requests coming from html form submittal, it should set the header also based on the post parameters.
When the apache serves as a proxy to other WS, e.g. mod_wl_22.so, the header that my filter sets is not passed to the other WS.
my guess is that the proxy module reads the headers from the apache before this heeader is set and already writes them to the socket to the other WS, so even though the header is validly set in the apache, it is not read by the proxy module.
any idea how to overcome this?
Many Thanks.