Reputation: 699
I have a WebService solution with Sample.svc and Sample.svc.cs containing a method like;
public override ResponseClass GenerateResponse(RequestClass request)
{
// Some code here.
}
I want to test and debug code line by line with adding breakpoints, but i do not have any knowledge about how to do it?
How can i debug the webservice code?
Upvotes: 0
Views: 1773
Reputation: 14604
You need to do following there may be other ways.
Upvotes: 2