Activity overview
Latest activity by JasonBock
Difficulty in Getting Information For API Calls Hosted in IIS
I'm currently working on fixing performance issues for a client. I've been trying to use ANTS to get meaningful information, but so far it's been frustrating. Here are some issues I've seen:* The A...
AleanderMz, that did the trick! Thanks for the help. / comments
AleanderMz, that did the trick! Thanks for the help.
I'll give that a whirl... / comments
I'll give that a whirl...
So here's what I tried. I went into the profiling configuration and tried to change "Manually specify ASP account details". If I don't use the same account used for the app pool that the API runs under, I get this error (the REDACTED is client-specific info):
[SqlException]: Cannot open database "REDACTED" requested by the login. The login failed. Login failed for user 'REDACTED$'. If I use the same account used for the app pool that the API runs under, I get this error: [MethodAccessException]: Attempt by security transparent method 'System.Net.Http.HttpClient.FinishSendAsync(System.Threading.Tasks.Task`1<System.Net.Http.HttpResponseMessage>, System.Net.Http.HttpRequestMessage, System.Threading.CancellationTokenSource, Boolean)' to call native code through method '<Module>._ANTS_Begin_Async()' failed. Methods must be security critical or security safe-critical to call native code. So....not sure where to go from here. Any other ideas? Or am I not setting the profiling session up correctly?
/ comments
So here's what I tried. I went into the profiling configuration and tried to change "Manually specify ASP account details".If I don't use the same account used for the app pool that the API runs un...
Yep, this is all my local dev environment. / comments
Yep, this is all my local dev environment.
Database Connection Issue While Profiling
I'm new to ANTS so I may be doing something wrong that's easy to fix....but I tried doing a profiling session for a .NET Framework-based Web API hosted under IIS (all local testing for now). The pr...
Thanks for looking at this. I'd like to look at your changes - send them over to jason AT jasonbock DOT net. / comments
Thanks for looking at this. I'd like to look at your changes - send them over to jason AT jasonbock DOT net.
This code comes from my add-in - you can get the code from here: http://exfinderreflector.codeplex.com/
Right now, 330 of 339 tests are passing (I'm not including AnalyzeAllMscorlibMethods). All of the tests used to pass before 6.x. It seems to be because the count of exception handlers isn't coming out the way I'm expecting them too.
Regards,
Jason / comments
This code comes from my add-in - you can get the code from here:http://exfinderreflector.codeplex.com/
Right now, 330 of 339 tests are passing (I'm not including AnalyzeAllMscorlibMethods). All of ...
Issue With ExceptionHandlers with Fault
I have a method that looks like this in IL:
.method public hidebysig newslot virtual instance void TryWithNoExceptionAndFaultWithException() cil managed
{
.maxstack 2
L_0000: leave L_000c
L_0005: n...
Adding Hyperlinking in Add-In
I'm working on a new add-in, and I'm wondering how I can add the hyperlinking feature that's prevalent within Reflector (e.g. where there's a hyperlink and clicking on it moves you to the correct m...