I have an ASP.NET WebApplication (.NET 4.0/C#) that works with an external COM dll (written in C++).
On a function call, which worked perfectly with an older ASP project, I get a AccessViolationException in the DLL code.
To debug it, I requested a debug version of the DLL from my colleague who wrote it. I have no access to the dll project or source code directly though.
How can I use this debug dll to find out where the error is occuring? I could not find a way to step into the method I am calling. Is it possible?
EDIT: I have the .pdb file as well, if that's any good. For some reason I cannot see the COM dll in the Debug->Windows->Modules overview. I'm really stuck, any help appreciated.