Click here to Skip to main content
15,891,423 members

Comments by bemahesh (Top 1 by date)

bemahesh 1-Feb-11 15:49pm View    
In the sub folder application, I have some handlers that I need to keep:
for example,
Collapse
<remove verb="*" path="*.asmx">
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
You mentioned to remove using syntax: <remove verb="*" path="*">
If I add remove in this sub application, wouldn't it remove other handlers(mentioned above) as well?