I am trying to get into the method specified in an external dll from a c # web service dll. I am developing a web service code and can enter it from my Winforms application. The dll I'm trying to migrate from the web service with was developed by someone else and I have dll and pdb files. When I try to enter it, I get the message below:
'No characters are loaded for the call stack frame. Source code cannot be displayed. '
Here is my project setup:
- .NET 3.5, VS 2008 Professional, IIS 7, Running on Vista Ultimate
- Winforms WF1.exe application, referencing the dll WS1.dll web service, in 1 solution on my machine.
- Access to the dll DA1.dll database compiled by another developer referenced by WS1.dll
- DA1.dll and DA1.pdb files located in the root directory of the WS1 web service project
- The WS1 web service, compiled and published in my local IIS files, DA1.dll and DA1.pdb, will be copied to the IIS WS1 bin directory
So far, so good, and everything works to a certain extent. I break and go to WF1.exe, and then go to the WS1.dll method, and no problems arise. However, when I try to enter the method on DA1.dll, an error occurs. Any help was appreciated.
(I also want to say that I connected to the WebDev.WebServer.EXE process to try to enter DA1)
Greetings
Kiaran
source
share