Ask a Question related to ASP.NET Web Services, Design and Development.
-
Craig #1
Can't debug simple C# Web Service
First, a confession. I am developing with an old version of VS .NET:
VS .NET 2002 (7.0.9955).
I am trying to start a *very* simple Web Service in debug mode. I'm getting
this message:
"Error while trying to run project: Unable to start debugging on the web
server. You do not have permissions to debug the server.
Verify that you are a member of the 'Debugger Users' group on the server.
Would you like to disable future attempts to debug ASP.NET pages for this
project?"
The server is the localhost (Windows XP Service Pack 2).
I'm signed on as a local user (rather than a domain user name) and my user
name is in the Debugger Users group.
Under the project properties the Debuggers settings are:
Enable ASP Debugging: False
Enable ASP.NET Debugging: True
Enable Unmanaged Debugging: False
Enable SQL Debugging: False
Any ideas?
Craig
Craig Guest
-
Simple(?) web service
Hello: I have written a simple web service which just is NOT deploying to client. The web service is an sp, and ws returns a data set. On... -
Simple Web Service Failing
Hey All, I haven't really touched Web Services on CF since I first played with them when 6.0 came out. I am trying to generate a very BASIC... -
Best Way to store simple data with web service?
Hi all, I'm starting up on a web service project and I think I've got the basics down. However, is there a simple way to store a small amount of... -
Debug Web Service on WindowsXP Pro with User Right
Hi there I am having trouble using Visual Studio.NET 2002 on WindowsXP When I created a WebService as "http://localhost/WevService1/" and start... -
Debug/Check validation of Web-Service
Hello, I use Web-Service. If there is a tinny problem in the web-service (even a single character not in place), I get the error : "service... -
Brock Allen #2
Re: Can't debug simple C# Web Service
You also need web.config to allow debugging:
<system.web>
<compilation debug="true" />
</system.web>
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
> First, a confession. I am developing with an old version of VS .NET:
>
> VS .NET 2002 (7.0.9955).
>
> I am trying to start a *very* simple Web Service in debug mode. I'm
> getting this message:
>
> "Error while trying to run project: Unable to start debugging on the
> web server. You do not have permissions to debug the server.
>
> Verify that you are a member of the 'Debugger Users' group on the
> server. Would you like to disable future attempts to debug ASP.NET
> pages for this project?"
>
> The server is the localhost (Windows XP Service Pack 2).
>
> I'm signed on as a local user (rather than a domain user name) and my
> user name is in the Debugger Users group.
>
> Under the project properties the Debuggers settings are:
>
> Enable ASP Debugging: False
> Enable ASP.NET Debugging: True
> Enable Unmanaged Debugging: False
> Enable SQL Debugging: False
> Any ideas?
>
> Craig
>
Brock Allen Guest
-
Craig #3
Re: Can't debug simple C# Web Service
Yeah, already had:
<system.web>
<compilation defaultLanguage="c#" debug="true">
</system.web>
Any other suggestions?
Craig
"Brock Allen" <ballen@NOSPAMdevelop.com> wrote in message
news:900739632543532893984128@msnews.microsoft.com ...> You also need web.config to allow debugging:
>
> <system.web>
> <compilation debug="true" />
> </system.web>
>
>
> -Brock
> DevelopMentor
> [url]http://staff.develop.com/ballen[/url]
>
>
>>> > First, a confession. I am developing with an old version of VS .NET:
> >
> > VS .NET 2002 (7.0.9955).
> >
> > I am trying to start a *very* simple Web Service in debug mode. I'm
> > getting this message:
> >
> > "Error while trying to run project: Unable to start debugging on the
> > web server. You do not have permissions to debug the server.
> >
> > Verify that you are a member of the 'Debugger Users' group on the
> > server. Would you like to disable future attempts to debug ASP.NET
> > pages for this project?"
> >
> > The server is the localhost (Windows XP Service Pack 2).
> >
> > I'm signed on as a local user (rather than a domain user name) and my
> > user name is in the Debugger Users group.
> >
> > Under the project properties the Debuggers settings are:
> >
> > Enable ASP Debugging: False
> > Enable ASP.NET Debugging: True
> > Enable Unmanaged Debugging: False
> > Enable SQL Debugging: False
> > Any ideas?
> >
> > Craig
> >
>
>
Craig Guest



Reply With Quote

