-
Posted to
IIS7 - Known Issues and Workarounds
by
Glenn Slayden
on
09-08-2009, 6:43 PM
[quote user="CooperNYC"]Response.Headers does seem to work, but I can only see ONE of the cookies (not all three). The Response.AppendHeader method will not work as I need to READ the cookies using the HttpModule, not write additional cookies.[/quote]
This is exactly the problem I'm having, as I just posted about at ...
-
Posted to
IIS7 - Known Issues and Workarounds
by
Glenn Slayden
on
09-08-2009, 6:31 PM
This problem is still happening if you are using a managed HttpFilter to filter FastCGI/PHP.
(Vista SP2, using cgi.dll 7.0.6001.18000, which the hotfix will not update.)
When FastCGI/PHP is done with the request and the filter stream is about to be flushed, HttpContext.Response.Headers shows only the last Set-Cookie ...
-
Posted to
IIS7 - Extensibility
by
Glenn Slayden
on
08-19-2009, 1:59 AM
What is it about posting your problem that causes it to be solved right after? After flailing on this for two days, I think I got it working just after posting this.
It seems that the replacement of form values is fully possible during RQ_BEGIN_REQUEST, and if you put a new entity body in place, and set Content-Length, PHP is happy and none the ...
-
Posted to
IIS7 - Extensibility
by
Glenn Slayden
on
08-19-2009, 1:24 AM
This is exactly the problem I'm having. Anybody have any luck editing intercepting and rewriting the incoming request entity body (form values)? I need my alterations to be picked up by PHP running under IIS7 FastCGI.
It seems that, during RQ_READ_ENTITY, I can use IHttpReadEntityProvider::SetEntity to replace the entity body--and ...