On Fri, Jul 30, 2010 at 8:45 PM, zonkzen <[email protected]> wrote: >> How much work do you plan to do in a single request? A request is one > Well, the sentence in the docs/help suggested that sometimes lifecycle > is run also for image requests. That's why I asked for clarification > on that.
That correct - BeginRequest/EndRequest run for _every_ request the ASP.NET runtime handles. If you have a wildcard mapping setup for ASP.NET (e.g. for serving MR requests without extensions) then you'll be creating a SessionScope for each request the site handles. If your using webforms - then you'll be creating SessionScopes for any IHttpHander requests (e.g. .ashx/WebResource.axd etc). j. -- You received this message because you are subscribed to the Google Groups "Castle Project Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en.
