iis-8

HTTP Error 500.19 and error code : 0x80070021

天涯浪子 提交于 2019-11-26 06:54:40
问题 I have a simple webAPI build by Visual Studio 2013. It works well when I run it from VS13 but when I copy the project in local IIS it gives me the following error. HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. Detailed Error Information: Module IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x80070021 Config Error This configuration section cannot be used at this

WCF on IIS8; *.svc handler mapping doesn't work

∥☆過路亽.° 提交于 2019-11-26 06:53:40
问题 I\'m trying to get a wcf service running in IIS8 on 2012 build 8400. When installing the web role the wcf stuff (under 3.51) wasn\'t to be found like in 2008. When installed the svc handler mapping was missing, so i did a: %windir%\\Microsoft.NET\\Framework\\v3.0\\WindowsCommunication Foundation\\ServiceModelReg.exe –i Now the handler mapping is there, but I still get: The resource you are looking for does not have a handler associated with it. (I removed the static file handler.) The site is

How do I properly instantiate 32-bit COM objects in classic ASP after installing Windows Update KB4340558?

为君一笑 提交于 2019-11-26 04:46:17
问题 On Windows Server 2012 R2, after installing update KB4340558 (update history) / KB4338424 (installed updates) we can no longer instantiate .NET .DLLs (interop) in classic ASP in 32-bit mode using server.createobject . We receive the error 0x800A01AD \"ActiveX component can\'t create object\" When we uninstall the update, the error disappears. Despite my best efforts, I was unable to find an alternate solution to uninstalling. We would prefer to reinstall the update and make whatever changes

IIS_IUSRS and IUSR permissions in IIS8

江枫思渺然 提交于 2019-11-26 01:41:34
问题 I\'ve just moved away from IIS6 on Win2003 to IIS8 on Win2012 for hosting ASP.NET applications. Within one particular folder in my application I need to Create & Delete files. After copying the files to the new server, I kept seeing the following errors when I tried to delete files: Access to the path \'D:\\WebSites\\myapp.co.uk\\companydata\\filename.pdf\' is denied. When I check IIS I see that the application is running under the DefaultAppPool account, however, I never set up Windows

ASP.NET Web API - PUT & DELETE Verbs Not Allowed - IIS 8

大憨熊 提交于 2019-11-25 22:45:04
问题 I recently upgraded from Visual Studio 2010 to the Visual Studio 2012 RC. The installer also installs IIS 8 Express which Visual Studio now uses as the default web server. IIS 8 is blocking my WEB API requests that use PUT AND DELETE verbs. IIS returns a 405 error, The requested resource does not support http method \'PUT\' . I know people have issues with this in the past and there are several messages about it on Stack Overflow. With IIS 7 Express the solution was to uninstall WebDav.

Dots in URL causes 404 with ASP.NET mvc and IIS

余生长醉 提交于 2019-11-25 21:47:06
问题 I have a project that requires my URLs have dots in the path. For example I may have a URL such as www.example.com/people/michael.phelps URLs with the dot generate a 404. My routing is fine. If I pass in michaelphelps, without the dot, then everything works. If I add the dot I get a 404 error. The sample site is running on Windows 7 with IIS8 Express. URLScan is not running. I tried adding the following to my web.config: <security> <requestFiltering allowDoubleEscaping=\"true\"/> </security>