I have a problem navigating to code, which is a website hosted on IIS7.
Basically, I have a test class that calls the WCF service, for example,
ISecurityService service = new SecurityServiceClient();
MembershipUser membershipUser = null;
membershipUser = service.GetMembershipUser("Mark");
I get the following error, but as far as I know, everything is included, i.e.
<compilation debug="true" targetFramework="4.0" />
Here is the msg error, I would appreciate any feedback. If I do not try to enter the line above, everything works fine.
Microsoft Visual Studio
Unable to automatically go to server. Remote procedure cannot be debugged. This usually indicates that debugging was not enabled on the server. For more information, see Help.
source
share