473,795 Members | 3,386 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET Profiling

Hello,

In the VS.NET documentation

http://msdn.microsoft.com/library/default.asp?
url=/library/en-us/cpguide/html/cpconenablingpr ofiling.asp

it says that in order to profile an application you have
to have its CLSID. I am new to profiling and looking to
profile my ASP.NET application, but don't know how to
find its CLSID. Also, it says that "The profiler must
implement the ICorProfilerCal lback" Does this mean I
have to develop my own program to do the profiling? I
thought VS.NET would have a built in profiler that would
log each time a function is entered or exited. Any help
would be appreciated! Thanks!
Nov 17 '05 #1
3 2033
Hello Mark,

Thanks for your post. I'd like to share the following information with you:

1. The COR_PROFILER refers to either the GUID of Profiler object or its
ProgID, which implements the interface ICorProfilerCal lback. There are
several examples of the profilers:

The .NET Profiling API and the DNProfiler Tool
http://msdn.microsoft.com/msdnmag/is...d/default.aspx

Hot Spot Profiler
<Program Files>\Microsof t Visual Studio .NET\FrameworkS DK\Tool Developers
Guide\Samples\p rofiler\gcp_pro filer

General Purpose
<Program Files>\Microsof t Visual Studio .NET\FrameworkS DK\Tool Developers
Guide\Samples\p rofiler\hst_pro filer

2. If you try to profile a web application, you will need to inject the
environment variables into the aspnet_wp. I recommend you the following
thread which discusses this issue:

http://groups.google.com/groups?hl=e...readm=098d01c2
ecb1%246477bb10 %24a601280a%40p hx.gbl&rnum=3&p rev=/groups%3Fq%3DCo r_Profiler%
26hl%3Den%26lr% 3D%26ie%3DUTF-8%26oe%3DUTF-8%26selm%3D098d 01c2ecb1%252464 77bb
10%2524a601280a %2540phx.gbl%26 rnum%3D3

Please feel free to let me know if you have any problems or concerns.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.

Nov 17 '05 #2
Huang,

Thank you for the articles. They were great, but
they were just slightly over my head. I have some
background in C++ but I am by no means an expert and I
don't know about programming COM, MFC, ATL, etc. in C++.
So I have two questions:

1) Is it possible to develop a profiler using C#? I
could try to modify the samples you linked to, but I'm
not sure how well that would go.

2) The google thread you referenced is great, but at one
point Andre says

You can use the attached program to find out the SID of
ASPNET account. Here is how to call it:
qlookup -name aspnet

But of course there is no attached file. Do you know
what program he was attaching? Or what other program
could I use to find the SID (I'm on WinXP Pro)?

Also, I am not sure about Andre's third step. I am not
sure what profiling variables to add. Sorry about being
such a newbie. I really appreciate all of your help!
Thanks so much!
-----Original Message-----
Hello Mark,

Thanks for your post. I'd like to share the following information with you:
1. The COR_PROFILER refers to either the GUID of Profiler object or its ProgID, which implements the interface ICorProfilerCal lback. There are several examples of the profilers:

The .NET Profiling API and the DNProfiler Tool
http://msdn.microsoft.com/msdnmag/is.../12/Hood/defau lt.aspx
Hot Spot Profiler
<Program Files>\Microsof t Visual Studio .NET\FrameworkS DK\Tool Developers Guide\Samples\ profiler\gcp_pr ofiler

General Purpose
<Program Files>\Microsof t Visual Studio .NET\FrameworkS DK\Tool Developers Guide\Samples\ profiler\hst_pr ofiler

2. If you try to profile a web application, you will need to inject the environment variables into the aspnet_wp. I recommend you the following thread which discusses this issue:

http://groups.google.com/groups?hl=en&lr=&ie=UTF- 8&oe=UTF-8&threadm=098d0 1c2ecb1%246477bb1 0%24a601280a%40 phx.gbl&rnum=3& prev=/groups% 3Fq%3DCor_Profi ler%26hl%3Den%26lr %3D%26ie%3DUTF-8%26oe%3DUTF-8%26selm% 3D098d01c2ecb1% 25246477bb10%2524a601280 a%2540phx.gbl%2 6rnum%3D3

Please feel free to let me know if you have any problems or concerns.
Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.
.

Nov 17 '05 #3
What about using commercial profilers like Ants
(http://www.red-gate.com/dotnet/ANTS_Profiler_facts.htm).

Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3720
by: James Sleeman | last post by:
Hi all, I'm trying to find a performance problem I've got in a reasonably large system I'm writing. Anyway, I've had a look around at the offerings for profiling php requests... xdebug : seems to make my requests just hit the 30 sec timeout all the time. apd : segfaults every time I make a request dbg : no front-end for linux (I looked a phpEd but it seemed to suck, and I couldn't see how to get profiling info out of it) ?
0
464
by: Irmen de Jong | last post by:
Okay I tried some profiling, but am uncertain about the results I'm getting. They confuse the hell out of me. I have a test program (see below) that essentially has two loops that get called repeatedly. One that is an idle wait loop, and one that is a busy-wait CPU hogger. I wanted to see what profiling results that would give. The total runtime of the program is 10 seconds, where 5 seconds are spent in the CPU-loop and 5 seconds in the...
3
10984
by: Richard Wallace | last post by:
Hello all, I'm looking for some input on the best tools to use for profiling multithreaded C++ code developed on GNU/Linux and compiled using gcc-3.1. More specifically, the distro in use is RH 7.2 running kernel 2.4.7 with SMP. The box has dual processors. Some of the options I've found are gprof - standard GNU profiler that comes with gcc. The biggest problem with this is that it does not support multithreading or
6
3754
by: cournape | last post by:
Hi there, I have some scientific application written in python. There is a good deal of list processing, but also some "simple" computation such as basic linear algebra involved. I would like to speed things up implementing some of the functions in C. So I need profiling. I first tried to use the default python profiler, but profiling my application multiplies the execution time by a factor between 10 and 100 ! So I decided to give a...
13
2288
by: Jens Theisen | last post by:
Hello, I want to apologise in advance for this being off topic. It's not neither A C nor a C++ question, but to profiling in general, though I my chances are best to find the answer in the C/C++ community. I have a C++ program to profile and went about it by producing large history files of calling dependencies with associated times. It is presumably similar to gprof's data format and could be converted.
0
2580
by: EdgarSanchez | last post by:
Hello Group, This mail is intended to announce the release of the newest version of SpeedTrace .NET Tracing & Profiling tool, SpeedTrace Pro. This tool is an improvement of the previous version that was launched in this group last year. SpeedTrace Pro has come up with the following new features: · Support .NET Framework 2.0 (Windows applications, ASP.NET, Windows .NET Services) · Improved Fast Engine(increased trace...
1
2031
by: =?UTF-8?B?TWFydGluIFDDtnBwaW5n?= | last post by:
Hello, I am searching for a good profiling tool for C# which can be easily embedded into Visual Studio. My objective is to measure the times and counts of every method in my program. If used the Coverage Tool of TestDriven.Net (http://www.testdriven.net/) which worked fine if I have defined any Unit test-cases.
0
2590
by: L'eau Prosper Research | last post by:
Press Release: L'eau Prosper Research (Website: http://www.leauprosper.com) releases new TradeStation 8 Add-on - L'eau Prosper Market Manipulation Profiling Tools Set. L'eau Prosper Market Manipulation Profiling Tools Set is a set of advanced tools that help Serious Traders analyze the market direction, market manipulative behavior and predicting the change of trend.
0
2353
by: L'eau Prosper Research | last post by:
NEW TradeStation 8 Add-on - L'eau Prosper Market Manipulation Profiling Tools Set By L'eau Prosper Research Press Release: L'eau Prosper Research (Website: http://www.leauprosper.com) releases new TradeStation 8 Add-on - L'eau Prosper Market Manipulation Profiling Tools Set. L'eau Prosper Market Manipulation Profiling Tools Set is a set of
9
1805
by: Peter Duniho | last post by:
I'm especially hoping Ben Voigt and/or Bob Powell see this (I saw their names on the m.p.d.f.performance newsgroup :) ) I would have posted to the performance newsgroup, but I see very little on there that actually seems to relate to the _tools_ per se while this newsgroup is actually somewhat related to the tools, and most of the useful answers come from people known to frequent this newsgroup anyway, so... :) My basic question: I...
0
9519
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10437
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10214
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9042
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6780
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3723
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2920
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.