That has nothing to do with the
web service, it has to do with the
web server, meaning remote debugging isn't enabled, or you don't have permissions for it, on the server thats hosting your site, or the ASP.Net application hasn't been set as a web application
You can try enabling remote debugging in the web.config, to do that
- Open the web.config file
- Y ou cannot access the file remotely using a Web browser due to built-in IIS & .Net security
- Look for the <compilation> tag. This marks the beginning of the <compilation> section.
- Inside the <compilation> tag, you will create the debug attribute
- Attributes are case sensitive, so be sure to specify "debug", not "Debug" or "DEBUG."
- Set debug to true, like in the example below
CODE
<configuration>
<system.web>
<compilation defaultLanguage="VB" debug="true">
...
...
...
To make sure your web site is registered as a web application try the following:
- Open the IIS admin app.
- Right click on your app's directory (/virtual dir) and select Properties.
- On the Directory tab, under Application Settings, next to Application Name there will be a 'Create' button - click it. Once the dir has been registered as a web app then this button will say 'Remove'.
- Click Apply (or OK).
One last thing, you need to enable debugging for your web application, to do this:
- Go to Internet Information Services
- Right mouse click on your project directory
- Go to the ASP.NET tab
- Click the Edit Configuration button
- Select the Application Tab
- Check the 'Enable Debugging' checkbox
Hope this helps