Debugging gone crazy
-
Hi all, I have a problem. I'm using VS2005 and I'm writing a web service. It's been working fine so far. Now, when I try to debug the code whenever I step over/in a line of code it goes to some random line elsewhere in the code. Sometimes, when I stop the program and then run again it automatically stop on a breakpoint without even Invoking the web service!! I tried Cleaning the solution, removed all .pdb files but nothing helped. Does anybody have a solution for this because it's driving me crazy!
In life truth does not matter. What really matters is what others believe to be the truth. (The Up and Comer - Book)
-
Hi all, I have a problem. I'm using VS2005 and I'm writing a web service. It's been working fine so far. Now, when I try to debug the code whenever I step over/in a line of code it goes to some random line elsewhere in the code. Sometimes, when I stop the program and then run again it automatically stop on a breakpoint without even Invoking the web service!! I tried Cleaning the solution, removed all .pdb files but nothing helped. Does anybody have a solution for this because it's driving me crazy!
In life truth does not matter. What really matters is what others believe to be the truth. (The Up and Comer - Book)
Is it multi-threaded application?
Charith Jayasundara
-
Is it multi-threaded application?
Charith Jayasundara
-
Hi all, I have a problem. I'm using VS2005 and I'm writing a web service. It's been working fine so far. Now, when I try to debug the code whenever I step over/in a line of code it goes to some random line elsewhere in the code. Sometimes, when I stop the program and then run again it automatically stop on a breakpoint without even Invoking the web service!! I tried Cleaning the solution, removed all .pdb files but nothing helped. Does anybody have a solution for this because it's driving me crazy!
In life truth does not matter. What really matters is what others believe to be the truth. (The Up and Comer - Book)
This usually happens when the source file and the pdb files are out of sync. This means the compiled version does not correspond to the current version of the source files. Erase all binaries, unGAC if necessary.
-
no ... it's just a webservice.
In life truth does not matter. What really matters is what others believe to be the truth. (The Up and Comer - Book)
There's no chance that there are multiple calls occurring to the webservice during your debugging?