You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Rewrite: In case of rewrite, a new request context is created, called the child request, and it goes through the entire IIS/ASP.NET integrated pipeline.
117
+
// The child request can be mapped to any of the handlers configured in IIS, and it's execution is no different than it would be if it was received via the HTTP stack.
118
+
// The parent request jumps ahead in the pipeline to the end request notification, and waits for the child request to complete.
119
+
// When the child request completes, the parent request executes the end request notifications and completes itself.
120
+
// Do not create activity for parent request. Parent request has IIS_UrlRewriteModule ServerVariable with success response code.
121
+
// Child request contains an additional ServerVariable named - IIS_WasUrlRewritten.
122
+
// Track failed response activity: Different modules in the pipleline has ability to end the response. For example, authentication module could set HTTP 401 in OnBeginRequest and end the response.
// Rewrite: In case of rewrite, a new request context is created, called the child request, and it goes through the entire IIS/ASP.NET integrated pipeline.
118
-
// The child request can be mapped to any of the handlers configured in IIS, and it's execution is no different than it would be if it was received via the HTTP stack.
119
-
// The parent request jumps ahead in the pipeline to the end request notification, and waits for the child request to complete.
120
-
// When the child request completes, the parent request executes the end request notifications and completes itself.
121
-
// Ignore creating root activity for parent request as control got transferred from rewrite module to EndRequest with no request flow.
0 commit comments