vote up 4 vote down star

I have written an installation class that extends Installer and overrides afterInstall, but I'm getting a null pointer exception. How can I got about debugging my class?

flag

0% accept rate

4 Answers

vote up 0 vote down

I use EventLog.WriteEntry("source", "message"), and check the EventLog when installing. Maybe not optimal, but works for me :)

link|flag
vote up 5 vote down

Something that is handy for hard to debug sections of code is

System.Diagnostics.Debugger.Break()

Will throw a breakpoint to be caught by an installed debugger (or remote debugger if installed).

Used it to debug really tricky areas such as service start/stop etc.

link|flag
vote up 2 vote down

attach the installer process to Visual studio in Debug->Processes->Attach or CTRL + ALT + P set the breakpoint and you should be able to go

link|flag
vote up 0 vote down

build a VM, install Visual studio, make a copy of it (or create a differencing Virtual HDD) and run the installer under the debugger under the VM.

That is what I would do (but I'm no expert).

link|flag
Combine this with the System.Diagnostics.Debugger.Break() tip and life gets really good at producing debuggable repros. – stephbu Nov 11 '08 at 6:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.