【发布时间】:2023-03-15 00:30:01
【问题描述】:
我在进入托管在 IIS7 上的网站的代码时遇到问题。
基本上我有一个像这样调用 WCF 服务的测试类
ISecurityService service = new SecurityServiceClient();
MembershipUser membershipUser = null;
membershipUser = service.GetMembershipUser("Mark"); // THIS LINE FAILS!!!
我收到以下错误,但据我所知,我已启用所有功能,即
<compilation debug="true" targetFramework="4.0" />
这是错误消息,如果有任何反馈,我将不胜感激。如果我不尝试进入上面的行,那么一切正常。
微软视觉工作室
无法自动进入服务器。无法调试远程过程。这通常表示服务器上没有启用调试。有关详细信息,请参阅帮助。
【问题讨论】:
标签: wcf debugging iis remote-debugging