Re: [DOTNET] Trace question.

2002-04-30 Thread Ingo Lundberg
Sorry, It should say OutputDebugString. You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Trace question.

2002-04-30 Thread Ingo Lundberg
Tomas, You beat me to it. Check out DbgView. With it you can "listen to" DebugOutputString over the net. /Ingo On Mon, 29 Apr 2002 19:20:31 -0500, Tomas Restrepo <[EMAIL PROTECTED]> wrote: >Drew, > >> I'm sure someone has to have already written one of >> these. > >Well, in that case, I guess

Re: [DOTNET] Trace question.

2002-04-29 Thread Marsh, Drew
Chris Jenkin [mailto:[EMAIL PROTECTED]] wrote: > Good ideas. I was hoping to avoid remoting...oh well. Can you > expand on OutputDebugString a little, not familiar with this. OutputDebugString is part of the Win32 Debug APIs that basically takes a string from any process and funnels it out to an

Re: [DOTNET] Trace question.

2002-04-29 Thread Axel Heitland
rmance oft hese logs look qquite acceptatble. Lookup the BaseEvent-class and the samples on WMI on how to grab events. G' night Axel -Original Message- From: Chris Jenkin [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 30. April 2002 00:22 To: [EMAIL PROTECTED] Subject: [DOTNET]

Re: [DOTNET] Trace question.

2002-04-29 Thread Tomas Restrepo
Drew, > I'm sure someone has to have already written one of > these. Well, in that case, I guess SysInternal's excellent DebugView [1] would be more than enough. [1] http://www.sysinternals.com/ntw2k/freeware/debugview.shtml -- Tomas Restrepo [EMAIL PROTECTED] You can read messages from the DO

Re: [DOTNET] Trace question.

2002-04-29 Thread Chris Jenkin
] Trace question. > Also, while it would be windows specific, you might consider > just looking for a a listening app that uses DebugActiveProcess > and WaitForDebugEvent with a DEBUG_EVENT value of > OUTPUT_DEBUG_STRING_EVENT because the > System.Diagnostics.DefaultTraceListener im

Re: [DOTNET] Trace question.

2002-04-29 Thread Ingo Rammer
> Also, while it would be windows specific, you might consider > just looking for a a listening app that uses DebugActiveProcess > and WaitForDebugEvent with a DEBUG_EVENT value of > OUTPUT_DEBUG_STRING_EVENT because the > System.Diagnostics.DefaultTraceListener implementation on > windows broadca

Re: [DOTNET] Trace question.

2002-04-29 Thread Marsh, Drew
Ingo Rammer [mailto:[EMAIL PROTECTED]] wrote: > write a trace lib that checks something like a semaphore [1] > which will be flagged as soon as the "Tracer GUI" is running. > It will then (only if the app is listening, i.e. if it's > flagged) send remoting requests to an object which is > publish

Re: [DOTNET] Trace question.

2002-04-29 Thread Ingo Rammer
riginal Message- > From: Ingo Rammer [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 30, 2002 1:12 AM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] Trace question. > > > Hi Nick & Chris, > > well ... I'm an Ingo so I'll try to offer some advice ;-) &

Re: [DOTNET] Trace question.

2002-04-29 Thread Ingo Rammer
)) Nick: I really hope you like the book! ;-) -Ingo Author of "Advanced .NET Remoting" http://www.dotnetremoting.cc > -Original Message- > From: Nick Wienholt [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 30, 2002 1:01 AM > To: [EMAIL PROTECTED] > Subject: Re

Re: [DOTNET] Trace question.

2002-04-29 Thread Nick Wienholt
CTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 8:21 AM Subject: [DOTNET] Trace question. > I would like to create a trace console for my assemblies. Example: I write 2 > exe's and both use my generic trace class, I would like to pop up a console > app that takes

[DOTNET] Trace question.

2002-04-29 Thread Chris Jenkin
I would like to create a trace console for my assemblies. Example: I write 2 exe's and both use my generic trace class, I would like to pop up a console app that takes a peek at what those other 2 applications are doing while they are running. Is this possible? Was I vague enough :) CJ You can