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?