Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
17k views

W3WP.EXE using 100% CPU - where to start?

An ASP.NET web app running on IIS6 periodically shoots the CPU up to 100%. It's the W3WP that's responsible for nearly all CPU usage during these episodes. The CPU stays pinned at 100% anywhere from a ...
7
votes
4answers
2k views

How can I determine which w3wp.exe process belongs to which web site?

I have an IIS6 web server that is hosting two application pools. Occasionally, one of the w3wp processes will spike the CPU for a while, and both app pools seem to suffer the consequences. I'm not ...
5
votes
6answers
2k views

Slow ASP.NET app load times - Can I track/trace/time the whole load cycle?

The ASP.NET web app project I'm currently working on is getting slower over time to re-load (In IIS or the .NET dev server). Currently it takes: 1:28 minutes to load via an F5 debug 41 seconds to ...
3
votes
1answer
382 views

When encountering an access violation, w3wp.exe crashes and restarts repeatedly until the application pool is stopped

I have a CLR 4 WCF service hosted in IIS 7.5 (Windows Server 2008 R2), using the WebHttp binding (with [WebGet]). The service calls into an unmanaged component implemented in C++ (Visual Studio 2010). ...
3
votes
3answers
1k views

Long Running Workflows in Sharepoint, do they block the w3wp process

We have a WSS 3.0 installation with Search Server, which is used to search for documents and Save the search definition to repeat the search later. The users want the option to be able to download all ...
2
votes
1answer
1k views

Task.Factory.StartNew with uncaught Exceptions kills w3wp?

I just transitioned some of my website's code from using QueueUserWorkItem to Task.Factory.StartNew I have some bad code that threw an Exception and it ultimately shut down w3wp. Running IIS 7.5 on ...
2
votes
1answer
3k views

ERROR: Symbol file could not be found. windbg.exe

I have downloaded the symbols from http://www.microsoft.com/whdc/devtools/debugging/symbolpkg.mspx the package (Windows 7 RTM x86 retail symbols, all languages) but it still gives me the same error! ...
2
votes
2answers
2k views

IIS7: Faulting application w3wp.exe, what is the root cause of these crashes?

Our Website is in .NET but with some old ASP and 32bits libraries too in it. It had been working fine for a while (2 years). But for the past month, we have seen the following error on our IIS7 ...
2
votes
2answers
846 views

.net performance counter - Process(w3wp)\% Processor Time

During performance testing, I found that the values of Process(w3wp)\% Processor Time are greater than 100. Some values are 237.1436486 312.5338052 341.2373994 264.4097661 191.6237736 I thought ...
2
votes
1answer
192 views

Visual Studio Plug-in that can tell the Application Pool name of w3wp.exe when debugging

Is there any plug-in for Visual Studio that can display the associated Application Pool name for those w3wp processes when debugging them with "Attach to Process..." ? Usually I have to do following ...
2
votes
1answer
731 views

Interpreting w3wp.exe thread-infos, does mscorwks.dll!StrongNameErrorInfo+0x7688 has a negative impact

I am trying to interpret the meaning of "mscorwks.dll!StrongNameErrorInfo+0x7688". I guess it means, that the assembly loaded by the mscorworks.dll has no StrongName? If yes, does this have any ...
2
votes
1answer
2k views

debugging error — error attaching to w3wp.exe

I am using VSTS 2008 + .Net 3.5 + C#. And I developed a custom Forms authentication module for IIS 7.0 and I attach to w3wp.exe to debug this module. During the attach process (I just select Tools -> ...
2
votes
2answers
2k views

ASP.NET: High CPU usage under no load

I´m facing a huge problem since a couple weeks. I´ve an asp.net application hosted under IIS7 (W2008 SP1), and every a couple hours it starts consuming near 50% of the CPU when maybe there're no users ...
2
votes
3answers
259 views

ASP.Net web site gets burst of requests that crashes IIS worker process

I'm running a fairly high volume asp.net web site across a two serve cluster. Typical load is around 20 requests/second per server as logged by the ASP.Net Apps performance object. At periodic times ...
1
vote
1answer
144 views

Does w3wp.exe keep extra crash information

I have created several websites that run from ISAPI dll's, which runs smoothly in most cases. Only on one server I get events like these: Event Type: Error Event Source: Application Error Event ...
1
vote
1answer
146 views

Where are my managed threads in W3WP

I create some managed threads inside an asp.net application (System.Threading.Thread). Each thread creates a row in a database and deletes it after the work is done (~3-5 minutes). When I look thread ...
1
vote
3answers
851 views

Cannot debugging asp.net on IIS7 by attaching process w3wp

I have a asp.net website in VS2008 which I have pre-compiled in local directory which is virtual directory for IIS 7(http://machinename:83) when i 1. launch http://machinename:83/ 2. ...
1
vote
1answer
215 views

Attaching to w3wp using mdbg

I am trying to attach to the w3wp process using the command line managed debugger (mdbg). I am not able to see the process in the list of processes with the "a" command. I am sure that the problem ...
1
vote
2answers
1k views

Cannot attach debugger to w3wp

I'm debugging an ASP.NET application but sometimes cannot find w3wp neither in Visual Studio process list (Menu: Debug -> Attach to Process...) nor in task manager. I have selected 'Show processes ...
1
vote
2answers
263 views

Prevent IIS from reusing worker processes for separate ASP.Net AppDomains

When IIS restarts an ASP.Net (2.0) web application, it can either: Recycle the AppDomain: Unload the AppDomain and load a new AppDomain on the same process (e.g. when HttpRuntime.UnloadAppDomain() ...
1
vote
2answers
2k views

W3WP crashes when initializing a collection

I've created an ASP.NET MVC application that has an initializer attached to the PreApplicationStartMethodAttribute. When initializing, a collection is instantiated that implements an interface I've ...
1
vote
2answers
716 views

SharePoint 2007 Central Admin w3wp.exe process consumin 99% CPU

I have been running an intranet using SharePoint 2007 for over a year and all has been working fine. However, after some time, I realized that the intranet portal was slow. Trying to access the ...
1
vote
1answer
642 views

Identify the w3wp System.Diagnostics.Process for a given application pool

I got few web sites running on my server. I have a "diagnostic" page in an application that shows the amount of memory for the current process (very useful). Now this app is 'linked' to another app, ...
1
vote
3answers
1k views

Troubleshoot ASP.net possible memory leak

It looks like there is a possible memory leak with one of our web applications. w3wp.exe is taking about 1.5gb of RAM and our web services are returning an error saying that it is out of memory. Is ...
1
vote
2answers
2k views

Why can't I attach to the w3wp.exe process when I turn off Just My Code in VS2010?

I'm using VS2010 Beta 2 and I turned on .NET Framework source stepping, so I had to disable 'Just My Code'. But now the w3wp.exe process doesn't show up in the list of processes I can attach to. ...
1
vote
1answer
89 views

w3wp has handle on download files

I set up iis to handle .exe with "asp.net 2.0"s isapi filter to enable dynamic url replacement. For this I setup the extension in iis and added the following line to web.config. Works fine so far. ...
1
vote
1answer
467 views

AppPool and worker process

A simple question: Is the AppPool same as the worker process w3wp? If this is the case when the w3wp.exe shuts down after "idle timeout" why does the AppPool show as still running on the IIS ...
1
vote
2answers
1k views

High CPU on w3wp

I've deployed a .NET website to a 2008 (IIS7) server and the site seems to fly for up to 30-50 concurrent users. When load testing it the site comes to a grinding halt sometime after 100 concurrent ...
1
vote
4answers
1k views

vs2008 attach to process, can't see which process

In vs2003 (and vs2005(not sure about that)) when I attached to a process, before actually attaching I could see which process were running under w3wp (I have a couple of websites running locally) so I ...
1
vote
1answer
255 views

How do you automatically attach to a specific IIS pool on remote server?

Currently three developers share one IIS box for testing. Because of third party utils and other restrictions we can't run the project locally so remote debugging is the only option. Our current ...
1
vote
1answer
693 views

How can I guarantee the w3wp process exists before turning on perfmon logging?

I have a batch script I run before our performance tests that does some pre-test setup on our server; it clears log files, starts the proper services, restores the database, sets some app settings and ...
1
vote
3answers
3k views

ASP.NET : w3wp is using lots of memory and the process is not responding

Can someone give me step by step instructions or point to the correct references in the correct order so that I can determine the root cause of this issue?
0
votes
1answer
32 views

Service Unavailable (w3wp.exe crash) in IIS

I developed a application site where one facility is FAQ in which user can post text data without any limit. I hv two server to run the application whenever a single field (question or answer) size is ...
0
votes
0answers
86 views

Error “Faulting application w3wp.exe…” found in event viewer if printing crystal reports in a loop

I'm developing a web app using VS.Net 2010 & embedded CR which would run on MS 2008 and IIS 7. One of the functions is to update database records ( ~20-50) and print a crystal report to a network ...
0
votes
1answer
48 views

Not able to delete a file because of IIS

What is the functionality This web application allows user to upload to web-server, download and delete files uploaded on web-server. Problem After downloading a file, when user tries to delete it, ...
0
votes
0answers
40 views

Nuget server on IIS7 / Win2008 faults w3wp.exe

I realize this is borderline non-development, but I'm a developer trying to create a NuGet Server, not an IIS guy, so hopefully someone here has experienced this. I have some libraries used across ...
0
votes
1answer
13 views

VsDebuggerCasualityData

I have a .net 2.0 app on a win2003 VM that calls a WCF service hosted in IIS7 on a win 2008 VM. After developing the client and service and testing (all was good) I took the opportunity to take a ...
0
votes
0answers
21 views

IIS 6 Stops itself

There are some web sites on Windows Server 2003/IIS 6. In last 3 days, there is a problem on IIS. It stops itself and web sites stops, I couldn't find reason. But Other services work well. It occured ...
0
votes
2answers
278 views

high cpu useage on w3wp process

I am encountering an issue with my asp.net c# web application where the server is hitting very high cpu useage eg. 80%+ on w3wp process. This has only happened recently after I made numerous changes ...
0
votes
2answers
95 views

w3wp occasionally hangs on nightly recycle

I have come across an issue with our ASP.NET application where occasionally a nightly recycle cases the w3wp to hang. This is what happens: Recycle is triggered. obviously this forces ...
0
votes
2answers
299 views

iis site use 100% cpu

I'm running iis7 under windows 2008 R2 The "w3wp.exe" process (the iis site) use 100%+- CPU Is there any why I can check which part of the site cause the problem ?
0
votes
2answers
125 views

Issue when remotely debugging a web service

I've found this question many times on Google and on StackOverflow, though none answer my scenario. I'm trying to remotely debug a web service, remote debugging is set up correctly, I've deployed the ...
0
votes
0answers
273 views

PerfMon and w3wp?

I'm looking at "Process:w3wp*:% Processor Time" in PerfMon and am struggling to follow something. I have traces running for w3wp and then w3wp#1 - w3wp#6, which are the six sites running on the ...
0
votes
3answers
384 views

How to debug iis “Service Unavailable” and (possibly) related w3wp.exe error in event viewer

suddently my website (asp.net-mvc iis) is down with error "Service unavailable". when i go to check the event viewer i see this error: Source: VsJitDebugger Error: An unhandled exception ('') ...
0
votes
1answer
145 views

Weird issue with spiking cpu on w3wp process

I'm having the strangest issue... I have a monorail website (a .NET solution, similar to ASP.NET MVC).. and on one of the pages there is a save button. When the save button is clicked, it executes ...
0
votes
1answer
903 views

Log memory usage of application pool using perfmon

I am trying to audit memory usage of applications using perfmon. The application pool processes in perfmon by default looks like w3wp.exe #1, w3wp.exe #2... Microsoft has a KB article ...
0
votes
1answer
374 views

w3wp.exe keeping files locked after processing in webservice

I have a webservice and I noted that some dlls in the wwwroot folder are kept logged after the webservice is executed. After restart of pc, the problem is solved. Can i have something in my code ...
0
votes
4answers
405 views

In VS2010, is there a way to know which application pool a given w3wp.exe is serving, to then decide to attach the debugger to?

So I'm debugging some websites (one from trunk, one from branch) running locally, in separate apppools. I have trunk and branch solutions open in two VS instances. I'd like to debug trunk in one, ...
0
votes
1answer
274 views

ASP.NET Session State Service in Sql Server but w3wp.exe #private increasing

I have recently moved our ASP.NET session state from InProc to a Sql Server solution. I can see session data being inserted into the Sql Server database. I'm monitoring the w3wp.exe process using the ...
0
votes
1answer
67 views

ASP.NET memory problem when changing culture

I have a strange problem with ASP.NET. Several sites on my web server run the exact same application. The application has a page that contains a Tab Container from the Ajax Control Toolkit which in ...

1 2