I have a wap site with susciription and I want to check if users are authorized to see some pages. I have decided to use http module.
Should I use AuthorizeRequest or BeginRequest to check the users status? and why?
views:
242answers:
2
A:
You really have not given enough information to garner an authoritative answer but I can provide a bit of information to get you started on refining your question.
See http://www.codeproject.com/Articles/39026/Exploring-Web-config-system-web-httpModules.aspx
Some relevant information would be a description of your authentication strategy.
Update your question and leave me a comment and I will get right back to you.
Sky Sanders
2010-05-26 14:04:13
Hi,I'm trying to implement something like servlet filter for JSF. in JSFI have used <dispatcher>REQUEST</dispatcher> to run the request for once per request.
estergones
2010-05-26 14:39:39
A:
You obviously should handle AuthorizeRequest event since you need to know who is the user (authentication must have been processed).
Spi
2010-08-31 13:10:40