c# - IIS 7.5 Application Initialization (Warmup) Module fails for web application not on port 80 -
i'm using application initialization module iis 7.5 on windows 2008 server web site that's mapped port 8080. after setting warmup module, able trigger application_start()
in global.asax
, not of pages set initialization pages. when added logging in application_beginrequest()
, showed warmup module calling pages on localhost:80
instead of localhost:8080
. tried using server.transferrequest
didn't work. response.redirect shouldn't work since these dummy requests , there no client respond redirect. wondering how of mattered @ all, web application sent request, evidenced triggerring application_beginrequest()
, why didn't proceed render of pages? logging on application_error()
didn't show errors on requests localhost:80
pages.
does have idea on causing issue , how fix it?
i asked question on iis forums, no luck. gave on issue , instead opted warm pages creating calls pages httpwebresponse
. works , gives added benefit of allowing me give credentials warmup requests (my website uses asp.net impersonation) initialization pages not allow me do.
Comments
Post a Comment