ASP.NET: Unable to automatically step into the server. The remote procedure could not be debugged.

Posted by mark smith on Stack Overflow See other posts from Stack Overflow or by mark smith
Published on 2010-06-02T05:31:45Z Indexed on 2010/06/02 5:33 UTC
Read the original article Hit count: 856

Filed under:
|
|
|

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

© Stack Overflow or respective owner

Related posts about wcf

Related posts about debugging