wcf - w3wp.exe是什么?

标签 wcf debugging iis iis-7 w3wp

我有一个 WCF 服务在本地系统上的服务用户下运行。每次我尝试调试时,它都会给我一条消息附加安全警告

在 Visual Studio 中,默认情况下(即使没有附加),我收到此错误:

Attaching to this process can potentially harm your computer. If the information below looks suspicious or you are unsure, do not attach to this process

Name: C:\Windows\System32\inetsrv\w3wp.exe

什么是w3wp.exe?根据Google搜索,我认为与IIS有关。但它有什么作用呢?应该更改什么设置,以便每次我尝试在本地系统上调试时都不会给出此消息?

最佳答案

An Internet Information Services (IIS) worker process is a windows process (w3wp.exe) which runs Web applications, and is responsible for handling requests sent to a Web Server for a specific application pool.

它是 IIS 的工作进程。每个应用程序池至少创建一个 w3wp.exe 实例,这才是实际处理应用程序中的请求的实例。附加到此消息并不危险,这只是一个标准的 Windows 消息。

关于wcf - w3wp.exe是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7822898/

相关文章:

c++ - 为什么指针访问比 vector::iterator 访问慢? (编译器代码生成)

asp.net-mvc - ASP.NET MVC/IIS 7.5 : 500 Internal Server Error for static content only

c# - "Attempted to read or write protected memory"由 urlmon.dll 引起

javascript - 仅在 IE 中使用 jQuery 发布数据时出现错误请求错误

javascript - jQuery Ajax WCF POST - 返回 bool 值

multithreading - 当到达 gdb 中的断点时是否可以停止所有其他线程的执行?

.net - SymbolSource 服务器问题

javascript - 如何从 json 数据中删除\?

wcf - 您可以在单个 Windows 服务中托管多个 WCF 进程吗?

非 IIS 服务器中的 Asp.net Web 应用程序?