iis-8

IIS 500 Error WCF Service and Failed Request Tracing not info

久未见 提交于 2019-12-08 03:30:56
问题 I have a WCF service running in IIS 8.5 on Windows Server 2012 R2 with AppPool Integrated. I open url in the server: http://localhost:50123/MyService.svc I have HTTP 500 Internal Server Error . (IExplorer cannot show the page) I have not found the problem in Event logs, IIS Logs. I apply this steps: https://peter.hahndorf.eu/blog/iislogging.html Disable IE “Friendly HTTP error messages” <customErrors mode=”Off” /> <httpErrors errorMode="Detailed" /> <serviceMetadata httpGetEnabled="true"/>

Cannot instantiate delphi written application.exe using IIS, MVC4, C# and COM

China☆狼群 提交于 2019-12-07 15:37:47
问题 My web application is a web interface for a desktop application called MyApplication.exe. My web application is written in C# (MVC4) that communicates with the MyApplication.exe (written in delphi) via COM-Objects. When 16 clients invoke the web app via the browser, 16 MyApplication.exe instances will be created on the server: My Problem: if client number 17 invokes the web application, I get the following exception in my eventlog: "System Error. Code: 8. Not enough storage is available to

IIS url rewrite | How to remove directory and extension?

天涯浪子 提交于 2019-12-07 11:19:23
问题 I have been struggling with the following for quite some time now: Default url: examplesite.com/folder/about.cshtml Desired url: examplesite.com/about Basically I want to accomplish two things: 1 Remove the file extension with realtively compact code. 2 Remove the folder that houses the about page. I have found some uncommon rules to achieve all the above, but they mostly contain a lot of redundant code that crashes my site when I test it with IIS 8.0. So I was hoping someone could share a

How to debug 500.0 / 0x00000000 error on System.Web.Mvc.MvcHandler

故事扮演 提交于 2019-12-07 09:33:35
问题 I'm getting this strange error which I am unable to figure out. Running on Windows 8.1, IIS 8.5. The site runs fine on Microsoft Azure so it must be a local configuration issue. I get the same errors in IIS Express as I do with IIS. The problem has been around for a few days and it's driving me mental. I can't even test simple CSS/Content changes (which is what I am trying to do) without pushing them up to Azure each time to check. ERROR: Module global.asax Notification EndRequest Handler

64 bit managed assembly with unmanaged dependencies not loading in IIS / ASP.NET MVC 4

混江龙づ霸主 提交于 2019-12-07 06:08:56
问题 I have an almost empty ASP.NET MVC4 project referencing a 64 bit managed assembly, which has a set of unmanaged dependencies. The managed assembly is referenced the normal way through references. The unmanaged dependencies are copied to the bin folder on a post build event - and are present when the web app is started (this has been verified). The problem is that I get: Could not load file or assembly 'msvcm80.DLL' or one of its dependencies. A dynamic link library (DLL) initialisation

How to not get “ERROR_FILE_IN_USE ” error when deploying a ASP.NET Core website using FTP/shared folder?

£可爱£侵袭症+ 提交于 2019-12-07 03:47:55
问题 I have an ASP.NET Core RTM Web Application that targets .net framework 4.52 In my project.json "frameworks": { "net452": {} }, When I publish it to an folder it creates a MyWebApplication.exe and when I access the app in my browser the exe is run. I need to publish the website to a web server that has Windows Server 2012 and IIS8 I have shared folder access via VPN to the website deploy directory. The first time I publish the site to the folder it worked correctly. I access the website url

Windows Process Activation Service Error 2:The system cannot find the file specified

一个人想着一个人 提交于 2019-12-07 03:38:58
问题 IIS on my development computer stopped working. I just installed the latest update to windows 10 (1803) and now when I try to start the "Windows Process Activation Service" I get an "Windows could not start the Windows Process Activation Service on Local computer. Error 2: The System cannot find the file specified" error. Things I have already tried: Reinstalled IIS and Windows Process Activation Service, several times I verified that I do have a "C:\inetpub\temp\appPools" folder Not sure

Problems switching .NET project from unmanaged to managed ODP.NET assemblies

痴心易碎 提交于 2019-12-06 12:03:06
问题 I'm trying to switch my .NET project over to the manage oracle to make deployments easier. However I'm getting the following error in my test Win Server 2013 environment: Unable to determine the provider name for connection of type 'Oracle.ManagedDataAccess.Client.OracleConnection'. Steps I've taken so far: Removed all Oracle.DataAccess dll's and references from the solution Added the Oracle Data Provider for .NET (ODP.NET) Managed Driver in the NuGet package manager Switched all Imports

URL Rewrite causing redirect loop

限于喜欢 提交于 2019-12-06 07:45:57
An issue has been frustrating me today in setting up a URL Rewrite in an old .Net Webforms website (EDIT: It is a Web Site project, not a Web Application project, if that is making a difference). The site I'm working on is linked to a lot, all linking to "webroot.com/default.aspx" rather than just "webroot.com". We're wanting to set up (SOMEWHERE, at this point I don't care if it's in global.asax as a redirect or web.config) a URL rewrite to go from /default.aspx to /. I've tried setting up in code through global.asax: if (Request.Url.PathAndQuery.ToLower().Contains("/default.aspx")) Response

machine.config processModel autoConfig=“true or false” for Explicit values in .net 4.0

折月煮酒 提交于 2019-12-06 05:54:37
问题 Hi I want to update processModel of my Server's machine.config file. Currently its value is as below: <system.web> <processModel autoConfig="true"/> </system.web> I want to update it with below new changes: <system.web> <processModel autoConfig="true" maxWorkerThreads = "100" maxIoThreads = "100" minWorkerThreads = "50" minIoThreads = "50" /> </system.web> I want to use other values of processModel (see default values at: msdn.microsoft.com/en-us/library/7w2sway1(v=vs.100).aspx) as Default