- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我无法再使用 ASP.NET RC1 和 HttpPlatformHandler 创建日志文件。
这是事件日志中的警告:
The description for Event ID 1004 from source HttpPlatformHandler cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
If the event originated on another computer, the display information had to be saved with the event.
The following information was included with the event:
Warning: Could not create stdoutLogFile , ErrorCode = -2147024843.
相关软件版本:
我已经为 stdoutLogFile 参数尝试了各种值。我正在使用来自 http://www.iis.net/learn/extensions/httpplatformhandler/httpplatformhandler-configuration-reference 的(糟糕的)文档
我试过:
网络配置:
<configuration>
<system.webServer>
<handlers>
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="..\approot\prod.cmd" arguments="" stdoutLogEnabled="true" stdoutLogFile="\\?c:\temp\wtlogs\" startupTimeLimit="3600" forwardWindowsAuthToken="false"></httpPlatform>
</system.webServer>
</configuration>
应用程序池是:
最佳答案
此配置在“c:\temp”文件夹中创建一个日志文件。您必须先创建“c:\temp”文件夹。
<aspNetCore processPath="dotnet" arguments=".\Api.dll" stdoutLogEnabled="true" stdoutLogFile="c:\temp\" forwardWindowsAuthToken="false" />
关于c# - 为什么 HttpPlatformHandler 不创建日志文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33901121/
我无法再使用 ASP.NET RC1 和 HttpPlatformHandler 创建日志文件。 这是事件日志中的警告: The description for Event ID 1004 from
我很难让 websocket 在 Azure Web 应用程序上运行,我目前正在将 Node 应用程序从 Azure 移植到 Go 应用程序。 WebSocket 已在门户上启用,这是我的 web.c
我正在尝试使用 HttpPlatformHandler(1.2 版)在 IIS(IIS 10.0)中运行一个基本的 Suave 应用程序。 当我让它返回单个 WebPart 时,例如 (OK "Hel
我使用 ASP.NET Core RC1 作为服务器来托管我的 Aurelia应用程序。我的应用程序工作得很好,但最近几周发生了一些变化,导致该应用程序在 Azure 上托管时不再加载。我不确定这是我
我使用 ASP.NET Core RC1 作为服务器来托管我的 Aurelia应用程序。我的应用程序工作得很好,但最近几周发生了一些变化,导致该应用程序在 Azure 上托管时不再加载。我不确定这是我
我正在尝试在 IIS 上运行 Rails,我遵循了提到的步骤 here经过斯科特·汉塞尔曼。 这里有一些可能有用的信息: Rails 版本:5.1.4 ruby 版本:2.3.3 按照设置步骤操作后,
目前我有提供 SSE 作为服务的程序,我必须在 IIS 上部署。但它不能正常工作,这是我在没有 IIS 的情况下运行 .exe 时的结果。 data: Hello, world 但是当它在 IIS 后
我正在尝试在 iis 上运行“Hello World”示例 node.js 服务器: var http = require('http'); var server = http.createServe
从 ASP.NET 5 beta 7 升级到 RC1 后,尝试从 Visual Studio 中启动 IIS Express 中的 Web 应用程序以“尝试确定托管应用程序的 DNX 进程的进程 ID
当我尝试使用 IIS 服务器 v7.5 启动我的 ASP.Net Core 应用程序时出现以下错误...我已成功将网站(Visual Studio 中的文件系统选项)发布到特定目录。它从 approo
我是一名优秀的程序员,十分优秀!