Ask a Question related to ASP.NET Building Controls, Design and Development.
-
lisa@starways.net #1
Tool to monitor/trace all method calls?
Debugging in .NET is so obnoxious. More often than not, due to the
whole object oriented thing, the errors I'm getting are inside of
objects that I then have to open up and poke through.
I can do that. It's not the end of the world. But it takes forever.
SQL Server has a trace utility (SQL Profiler). Has anyone made
anything comparable for .NET? Something that I can turn on and will
display a record every time a method gets called or a property gets
accessed or an event gets raised?
I've searched, but I haven't succeeded in finding anything.
Anyone?
lisa@starways.net Guest
-
where is auto trace tool in illustrator cs win
I have a simple shapr that I want to trace and then clean up a bit but can not find the auto trace tool in Illustrator CS for Windows. Can anyone... -
Concurrent Method Calls
All, If I were to instantiate a component in the Application scope, how many concurrent calls to the same method of that component could... -
Trace tool question
I hope some generous person will help a newbie. I am trying to make a line art outline of an image using the freehand 10 autotrace tool. I make a... -
Performance of web method calls
Hi I have been timing a client application's response time when invoking a simple web method (it simply returns). A single test client invokes... -
Trace tool-->Path Overlap?
Can anyone tell me what the heck the Path Overlap option controls in the Trace tool dialog box? I'm not seeing a difference when I change the... -
Steve Walker #2
Re: Tool to monitor/trace all method calls?
In message <1120687710.613803.76590@g43g2000cwa.googlegroups. com>,
[email]lisa@starways.net[/email] writesHave a look at:>Debugging in .NET is so obnoxious. More often than not, due to the
>whole object oriented thing, the errors I'm getting are inside of
>objects that I then have to open up and poke through.
>
>I can do that. It's not the end of the world. But it takes forever.
>
>SQL Server has a trace utility (SQL Profiler). Has anyone made
>anything comparable for .NET? Something that I can turn on and will
>display a record every time a method gets called or a property gets
>accessed or an event gets raised?
>
>I've searched, but I haven't succeeded in finding anything.
[url]http://www.compuware.com/products/devpartner/1969_ENG_HTML.htm[/url]
I can't remember what all of the tools do, but the kind of thing you're
looking for is definitely their kind of product.
The problem you may have is that a well designed OO system is likely to
exhibit a far higher number of calls than you would see with
SQLProfiler, so you won't realistically be able to do it real-time. I'm
not sure you'll really get anything more valuable than a call stack,
which you can view through the Visual Studio IDE anyway.
--
Steve Walker
Steve Walker Guest
-
lisa@starways.net #3
Re: Tool to monitor/trace all method calls?
Steve Walker wrote:Thanks. I'll look at it.> In message <1120687710.613803.76590@g43g2000cwa.googlegroups. com>,
> [email]lisa@starways.net[/email] writes>> >Debugging in .NET is so obnoxious. More often than not, due to the
> >whole object oriented thing, the errors I'm getting are inside of
> >objects that I then have to open up and poke through.
> >
> >I can do that. It's not the end of the world. But it takes forever.
> >
> >SQL Server has a trace utility (SQL Profiler). Has anyone made
> >anything comparable for .NET? Something that I can turn on and will
> >display a record every time a method gets called or a property gets
> >accessed or an event gets raised?
> >
> >I've searched, but I haven't succeeded in finding anything.
> Have a look at:
>
> [url]http://www.compuware.com/products/devpartner/1969_ENG_HTML.htm[/url]
>
> I can't remember what all of the tools do, but the kind of thing you're
> looking for is definitely their kind of product.
How can I do that? Sorry if that's a dumb question, but are you saying> The problem you may have is that a well designed OO system is likely to
> exhibit a far higher number of calls than you would see with
> SQLProfiler, so you won't realistically be able to do it real-time. I'm
> not sure you'll really get anything more valuable than a call stack,
> which you can view through the Visual Studio IDE anyway.
that I can see the call stack during execution without having to add a
ton of extra code to my project?
Lisa
lisa@starways.net Guest



Reply With Quote

