Comments
Sort by recent activity
I found a [assembly: AllowPartiallyTrustedCallersAttribute()] in the code.
However,
DELETING the PDB files worked, obviously, because I only want methods with source, so when I removed the pdb file, ANTS has no way to find the source! / comments
I found a [assembly: AllowPartiallyTrustedCallersAttribute()] in the code.
However,
DELETING the PDB files worked, obviously, because I only want methods with source, so when I removed the pdb file...
Unfortunately upgrading is not an option because we didn't renew our license. I consider the issue closed since the fix is not to include pdb's which is just fine, I don't need them anyway... / comments
Unfortunately upgrading is not an option because we didn't renew our license. I consider the issue closed since the fix is not to include pdb's which is just fine, I don't need them anyway...
Hey David,
This would be excellent, it is not a problem right now, so in the future we'll appreciate this new feature!
Thanks!
Jaap / comments
Hey David,
This would be excellent, it is not a problem right now, so in the future we'll appreciate this new feature!
Thanks!
Jaap
Thank you Clive, it's easier than I thought! / comments
Thank you Clive, it's easier than I thought!
Logs have been sent by e-mail / comments
Logs have been sent by e-mail
Brian, thank you for your advice.
The ability to import memory dumps into the great interface of the Memory Profiler would be awesome. But I can see that mapping 5GB of object would also be problematic for the Profiler. / comments
Brian, thank you for your advice.
The ability to import memory dumps into the great interface of the Memory Profiler would be awesome. But I can see that mapping 5GB of object would also be problem...
I've found a log file, but I don't see really strange things in the logs.
Can I send a log file to someone?
No noticable eventlogs (other than some unhandled exceptions in the website) / comments
I've found a log file, but I don't see really strange things in the logs.
Can I send a log file to someone?
No noticable eventlogs (other than some unhandled exceptions in the website)
Unfortunately I ran this longrunning performance test with IIS restart to confirm that setting Framework64\aspnet.config gcServer="false" works.
So after the weekend I'll run with custom port again (have to alter load test in order to do that), and hope this error doesn't appear again or if it does, I can post a better stacktrace of the actual error. / comments
Unfortunately I ran this longrunning performance test with IIS restart to confirm that setting Framework64\aspnet.config gcServer="false" works.
So after the weekend I'll run with custom port again...
Hi Chris,
I didn't run into the sudden exception anymore. From now on I'll use the "unused port" feature and set it to port 80 (I'll have to disable the site in iis), because of the firewall between the server and the load-test-host. / comments
Hi Chris,
I didn't run into the sudden exception anymore. From now on I'll use the "unused port" feature and set it to port 80 (I'll have to disable the site in iis), because of the firewall betwee...
Hi Brian,
When I use port 8013 I get an error taking a snapshot: The snapshot failed because .NET did not report every referenced object. This failure is most likely due to a bug in version 2 of the CLR that can be triggered when the garbage collector is operating in 'server mode' and the target application has many large objects.You can work around this bug by manually switching your application to the workstation garbage collector. See the MSDN documentation on the gcServer configuration option for information on how to acheive this.
I added <gcServer enabled="false" /> to
C:\WINDOWS\microsoft.net\Framework\v2.0.50727\aspnet.config
and I still get the same error.
But then I rembered that the system is 64 bits and that there is also a
C:\WINDOWS\microsoft.net\Framework64\v2.0.50727
directory.
After I added gcServer enabled="false" /> to
C:\WINDOWS\microsoft.net\Framework64\v2.0.50727\aspnet.config
It worked like a charm. Maybe you can add this 64bit gotcha in some FAQ?
So for now I'm satisfied with the workaround, but I'm still puzzled why the IIS restart is happening... / comments
Hi Brian,
When I use port 8013 I get an error taking a snapshot:The snapshot failed because .NET did not report every referenced object. This failure is most likely due to a bug in version 2 of the...