The title basically summarizes it.

I have a COM+ Server Application implemented using VB.NET 2010, that was configured to gather data from its own .config file by using the procedure described in http://msdn.microsoft.com/en-us/library/windows/desktop/ms685134(v=vs.85).aspx .

So far, it seems to work like a charm. And I, foolishly, assumed that should be enough for it to know where to pick the .pdb files containing debug info, and include such info when unexpected exceptions arise from it. (The .pdb files are there, btw... right next to the .dll files that comprise the COM+ Application).

Looks like I was wrong, after all; all exceptions thrown from the COM+ Application show the functions being called, but not the related line numbers.

Do I need to do something else in order to make my COM+ Application to return not only function names, but also line numbers in the stack trace returned by exceptions being raised on it?

link|improve this question
Did you change the "Generate debug info" option for the Release build to "Full"? Required. – Hans Passant Sep 28 '11 at 17:17
Yes. I just confirmed it. Mind you, I'm not using the "Release" build, but the "Debug" build. Just to be clear: both builds, "Debug" and "Release", have "Generate debug info" set to "Full". – Heriberto Delgado Sep 29 '11 at 18:20
It looks like the runtime is not finding the PDB files. If I were to guess it sounds like application root is only used for the configuration and not for the runtime locating the PDB files. As a test, I would copy the PDB files to the system32 directory and see if that helps. – Tuzo Oct 5 '11 at 0:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.