asp.netiisw3wpprocess-explorer

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 negative impact for a web application?

Is it safe to assume that the thread count of 107 means, that web application needed at a peek a maximum of 107 concurrent threads to handle incoming requests?

alt text


Solution

  • An offset of 0x7688 strongly indicates that is not the correct name for method (and there is a symbol correctness issue).

    107 threads seems very high, unless there is a lot of blocking going on when serving requests, perhaps time to perform some operations asynchronously?