I am using visual studio and I have asp.net application as one project and a web service as another project.I am using web service in my asp.net application. There is some sort of problem im my webservice code.But i am unable to debug continuosly from asp.net application to web service.I put break point both in application and web service but break point not activated in web service and it shows me connection error.How can i do this while hosting on localhost?
|
|
If you're running web application as startup project, try running web service in another debug instance. You can do it by right-clicking on web service project, Debug -> Start new instance |
|||
|
|
|
You should attach the debugger to w3wp (IIS process). Here is a link that could help you. |
|||||
|
|
|
If you want to debug in local system, You can set multiple start up projects. You can set multiple startup by Solution properties. Hope this help |
|||
|
|
|
Try to debug the service itself and see if it hits breakpoint. Just set the project that has service in it to be the main project and set the service to be the main start page. If it doesn't hit the breakpoint it probably didn't load all the symbols. That happens if the project is set to, lets say, Release configuration and not Debug. |
|||
|
|
|
Is the web service running on a remote computer , if so you need to setup remote debug for the web service. |
|||||||||||
|
|
Can You please check that you add Service reference your web service or not other you can't access your web service fuction . I am useing web service in my project like this it's below this is my web service code
then i add Service reference to my asp.net web form this code in my form
i think this will help you |
|||
|
|
|
This might happen when you are trying to debug on the code running when you start application pool. So, put this line before any code you want to debug for temporary, then re-build web service.
|
|||
|
|
