ASP.NET: Unable to automatically step into the server. The remote procedure could not be debugged.
- by mark smith
Hi there,
can anyone help?
I am having a problem stepping into code which is a website hosted on IIS7.
Basically i have a test class which calls a WCF service like so
ISecurityService service = new SecurityServiceClient();
MembershipUser membershipUser = null;
membershipUser = service.GetMembershipUser("Mark"); // THIS LINE FAILS!!!
I get the following error but i have everything enabled as far as i know i.e.
<compilation debug="true" targetFramework="4.0" />
Here is the error msg, i would appreciated any feedback.. If I don't try and step into the line above then all works ok
Microsoft Visual Studio
Unable to automatically step into the server. The remote procedure could not be debugged. This usually indicates that debugging has not been enabled on the server. See help for more information.
OK Help