Reputation: 24316
I have a few tests which test my controllers in an MVC app. Everything seems to be ok but then when i call my rest service from within a controller the debug points are not hit in the rest service.
Is there a solution for this? Apart from the Attach Process or running 2 instances of visual studio, 1 for mvc and 1 for rest?
Thanks
Upvotes: 1
Views: 156
Reputation: 5261
Sounds like the rest service is running in its own process? Is it on a separate app pool?
Are you looking for "Debugging Multiple Processes" http://msdn.microsoft.com/en-us/library/a404w14b.aspx
As you noted you can always run 2 instances of visual studio ;).
Upvotes: 1