473,395 Members | 1,462 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

web.config httpModules

What do the following httpModules do?

UrlAuthorization
FileAuthorization
ServiceModel
ErrorHandlerModule
ScriptModule

Aug 20 '08 #1
5 2409
Hi MCM,

As for the httpModules you mentioned, here is some of my understandings:
>UrlAuthorization
FileAuthorization
=============================
these two are all authorization modules which will control the current user
request's authorization(access control). They works depend on different
authentication schema. UrlAuthorization generally work with forms
authentication while FileAuthorization depend on windows authentication.

http://msdn.microsoft.com/en-us/libr...hd(VS.71).aspx

http://www.bluevisionsoftware.com/We....aspx?Name=URL
Authorization

>ServiceModel
=============================
This is a httpmodule installed for WCF service (hosting in IIS/asp.net
application). It is necessary for those xx.svc WCF endpoint to work when
hosted in ASP.NET web application.
>ErrorHandlerModule
===============================
I think this is just an general module for handling some error occurs
during the ASP.NET server request processing pipeline

>ScriptModule
=============================
This is the module for handling ASP.NET AJAX requests
Hope this help clarify some.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/...tance&ln=en-us.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: =?Utf-8?B?TUNN?= <MC*@newsgroup.nospam>
Subject: web.config httpModules
Date: Wed, 20 Aug 2008 13:12:07 -0700
>
What do the following httpModules do?

UrlAuthorization
FileAuthorization
ServiceModel
ErrorHandlerModule
ScriptModule

Aug 21 '08 #2
ServiceModel
=============================
This is a httpmodule installed for WCF service (hosting in IIS/asp.net
application). It is necessary for those xx.svc WCF endpoint to work when
hosted in ASP.NET web application.
Sorry, I don't understand. If it helps, I'll be hosting with .NET 3.5 sp1 on
IIS7. Can I remove the ServiceModel? Or does it help me?

ErrorHandlerModule
===============================
I think this is just an general module for handling some error occurs
during the ASP.NET server request processing pipeline
If I'm not doing any custom error logging, do I need this?

Aug 21 '08 #3
Thanks for your reply MCM,

As for the "ServiceModel", if you're sure you'll not use any WCF related
things in your web application/web server, you can remove it.

As for the "ErrorHandlerModule", so far I don't suggest you remove it since
it is not documented and there may exists some internal classes or
components rely on it to format error messages.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.
--------------------
>From: =?Utf-8?B?TUNN?= <MC*@newsgroup.nospam>
References: <54**********************************@microsoft.co m>
<Es**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: RE: web.config httpModules
Date: Thu, 21 Aug 2008 10:57:00 -0700
>
>ServiceModel
=============================
This is a httpmodule installed for WCF service (hosting in IIS/asp.net
application). It is necessary for those xx.svc WCF endpoint to work
when
>hosted in ASP.NET web application.

Sorry, I don't understand. If it helps, I'll be hosting with .NET 3.5 sp1
on
>IIS7. Can I remove the ServiceModel? Or does it help me?

>ErrorHandlerModule
===============================
I think this is just an general module for handling some error occurs
during the ASP.NET server request processing pipeline

If I'm not doing any custom error logging, do I need this?

Aug 22 '08 #4
Hi MCM,

Do you have any further questions on this? If so, please feel free to post
here, I'll be glad to help you.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.
--------------------
>Content-Transfer-Encoding: 7bit
From: st*****@online.microsoft.com (Steven Cheng [MSFT])
Organization: Microsoft
Date: Fri, 22 Aug 2008 02:59:29 GMT
Subject: RE: web.config httpModules
>Thanks for your reply MCM,

As for the "ServiceModel", if you're sure you'll not use any WCF related
things in your web application/web server, you can remove it.

As for the "ErrorHandlerModule", so far I don't suggest you remove it
since
>it is not documented and there may exists some internal classes or
components rely on it to format error messages.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.
--------------------
>>From: =?Utf-8?B?TUNN?= <MC*@newsgroup.nospam>
References: <54**********************************@microsoft.co m>
<Es**************@TK2MSFTNGHUB02.phx.gbl>
>>Subject: RE: web.config httpModules
Date: Thu, 21 Aug 2008 10:57:00 -0700
>>
>>ServiceModel
=============================
This is a httpmodule installed for WCF service (hosting in IIS/asp.net
application). It is necessary for those xx.svc WCF endpoint to work
when
>>hosted in ASP.NET web application.

Sorry, I don't understand. If it helps, I'll be hosting with .NET 3.5 sp1
on
>>IIS7. Can I remove the ServiceModel? Or does it help me?

>>ErrorHandlerModule
===============================
I think this is just an general module for handling some error occurs
during the ASP.NET server request processing pipeline

If I'm not doing any custom error logging, do I need this?


Aug 26 '08 #5
No, you answered my questions. Thank you.

"Steven Cheng [MSFT]" wrote:
Hi MCM,

Do you have any further questions on this? If so, please feel free to post
here, I'll be glad to help you.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.
--------------------
Content-Transfer-Encoding: 7bit
From: st*****@online.microsoft.com (Steven Cheng [MSFT])
Organization: Microsoft
Date: Fri, 22 Aug 2008 02:59:29 GMT
Subject: RE: web.config httpModules
Thanks for your reply MCM,

As for the "ServiceModel", if you're sure you'll not use any WCF related
things in your web application/web server, you can remove it.

As for the "ErrorHandlerModule", so far I don't suggest you remove it
since
it is not documented and there may exists some internal classes or
components rely on it to format error messages.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.
--------------------
>From: =?Utf-8?B?TUNN?= <MC*@newsgroup.nospam>
References: <54**********************************@microsoft.co m>
<Es**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: RE: web.config httpModules
Date: Thu, 21 Aug 2008 10:57:00 -0700
>
ServiceModel
=============================
This is a httpmodule installed for WCF service (hosting in IIS/asp.net
application). It is necessary for those xx.svc WCF endpoint to work
when
>hosted in ASP.NET web application.

Sorry, I don't understand. If it helps, I'll be hosting with .NET 3.5 sp1
on
>IIS7. Can I remove the ServiceModel? Or does it help me?
ErrorHandlerModule
===============================
I think this is just an general module for handling some error occurs
during the ASP.NET server request processing pipeline

If I'm not doing any custom error logging, do I need this?


Sep 4 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Simon-Pierre Jarry | last post by:
Hi, I created a custom HttpModule for managing the security of my application. in "Init" sub, I regsiter the events doing that : Public Sub Init(ByVal context As System.Web.HttpApplication)...
4
by: Bill Long | last post by:
Hi, I have a situation like this: wwwroot has a web.config file that adds a custom http module <httpModules> <add name="MyModue" type="MyType,MyAssembly" /> </httpModules>
1
by: Asela Gunawardena | last post by:
Hi all, we have a webservice as a seperate virtual directory placed under a Web Site named GRSCS in IIS. Both are .NET applications and uses MS application blocks as the data layer. Recently an...
3
by: Jose Fernandez | last post by:
HI first of all, excuse me for my english. And Thank in advance for even read my post. I have a problem that is driving me insane. I have an application (JUCAR) which use HttpModule and i have...
2
by: Mikael Syska | last post by:
Hi, Google gives alot of hits on httpmodules but I can't seem to find any useful on my problem ... I have a site where I'm using my own auth system ... ( guess it could be better but its...
9
by: Milsnips | last post by:
Hi all. i'm tryng to implement the Rewrite.NET url rewritining functionality into a test project i've created, however i am hitting a problem at this line (direct from the web example): ...
1
by: Samuel R. Neff | last post by:
We have a problem with Web.config inheritance in two of our applications. We have an old app which is poorly written and must be in the root of the server. We have a newer app which runs from a...
2
by: alexvodovoz | last post by:
Hi, I have been struggling with this for the past couple of days. We have a custom http module setup in our project to filter some requests. I only want this module to be applied to certain...
0
by: mazdotnet | last post by:
Hi, I'm using UrlRewriter.NET in my project which is causing problems when in Vista (same code works fine on Windows XP). I'm going by the example in Scott's Blog...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.