Dr.Watson wont start
Hello!
I'm having a problem with Dr.Watson on citrix running on windows 2000 server/sp4. The Dr simply won't start when my app crashes with access violation. All entries in registry (AeDebug) seems to bee ok.
Any help is appreciated
Nicholas :confused:
[290 byte] By [
Nicholas_K] at [2007-11-19 1:24:27]

# 1 Re: Dr.Watson wont start
Hmm could be a couple of things. Try running drwtns32 manually under the session.
Start your app, in a console window do drwtsn32 -p <pid>
Then run drwtsn32 and see if it created a log file (from the int 3)
As a side note, you can write your own handlers and log your own stack trace using
_set_se_translator(...)
SetUnhandledExceptionFilter(...)
StackWalk(...)
MiniDumpXXX functions.
Mick at 2007-11-10 3:40:38 >

# 2 Re: Dr.Watson wont start
OK, thanks Mick! I think I'll have to write a handler by myself using dbghelp library... :thumbd:
Nicholas
# 3 Re: Dr.Watson wont start
I was able to start drwatson in my exception handler with
CreateProcess(... "drwtsn32 -p" ....)
just thought u want to know...
now back to Sherlock Holmes :wave:
Nicholas