We wanted to download a .dll file from the server however it was causing issues due to the asp configuration.
After some investigation someone found the error to be solved by commenting out line for the .dll file within the configuration file.
==
/usr/local/apache/conf/mod_mono.conf
==
==
AddType application/x-asp-net .asmx
AddType application/x-asp-net .ashx
AddType application/x-asp-net .asax
AddType application/x-asp-net .ascx
AddType application/x-asp-net .soap
AddType application/x-asp-net .rem
AddType application/x-asp-net .axd
AddType application/x-asp-net .cs
AddType application/x-asp-net .config
AddType application/x-asp-net .Config
# AddType application/x-asp-net .dll
DirectoryIndex index.aspx
DirectoryIndex Default.aspx
DirectoryIndex default.aspx
==
Server Error in '/' Application
Forbidden
Description: HTTP 403. Error processing request.
Stack Trace:
System.Web.HttpException: Forbidden
at System.Web.HttpForbiddenHandler.ProcessRequest (System.Web.HttpContext context) [0x00000]
at System.Web.HttpApplication+<>c__CompilerGenerated1.MoveNext () [0x00000]
at System.Web.HttpApplication.Tick () [0x00000]
Version information: Mono Version: 1.1.4322.2032; ASP.NET Version: 1.1.4322.2032
==
No comments:
Post a Comment