Hi.
I am wondering what is the best way to step into my Web Service? When I compile my code the application hangs when it gets to a web service method. If i try to set a break point and step into the service's code, it won't let me - catching "The operation has timed out".
Things I have tried:
1) My SVC file has Debug="true"
2) My Web.config in both my web project and service has
3) I have tried "attach to process" using the DLL from the compiled Service but then I need to unload the project and reload to compile and run it and I am not sure of the process is attached any more. Regardless, it doesn't seem to be working - still hangs.
I am using ASP.NET 3.5 and my web service calls a service class library.
Any suggestions as to how I can step into my web service methods so I can figure out why it is hanging?
Thanks in advance!