Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2003-11-13 20:27:03 +0300
committerLluis Sanchez <lluis@novell.com>2003-11-13 20:27:03 +0300
commitf5c12129001618a7cddf7284b215feb94d4ebc40 (patch)
treebbc2ec75084b630d14115b9f8d8cb612f97a7702 /data
parente550dc51ccf36407fd008a97bb01b12b1d8ef6e5 (diff)
Added web handlers for .rem and .soap, which are managed by remoting
svn path=/trunk/mono/; revision=19949
Diffstat (limited to 'data')
-rw-r--r--data/machine.config2
1 files changed, 2 insertions, 0 deletions
diff --git a/data/machine.config b/data/machine.config
index c7024eaf3d1..43c0cb3f34d 100644
--- a/data/machine.config
+++ b/data/machine.config
@@ -74,6 +74,8 @@
<add verb="*" path="*.ascx" type="System.Web.HttpForbiddenHandler, System.Web" />
<add verb="*" path="*.config" type="System.Web.HttpForbiddenHandler, System.Web" />
<add verb="*" path="*.cs" type="System.Web.HttpForbiddenHandler, System.Web" />
+ <add verb="*" path="*.rem" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory, System.Runtime.Remoting" validate="false" />
+ <add verb="*" path="*.soap" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory, System.Runtime.Remoting" validate="false" />
<add verb="GET,HEAD" path="*" type="System.Web.StaticFileHandler, System.Web" />
<add verb="*" path="*" type="System.Web.HttpMethodNotAllowedHandler, System.Web" />
</httpHandlers>