我成功地为我的ASP.NET项目添加了一个服务引用,但是当我尝试从服务客户端调用方法时,我得到了EndpointNotFoundException
:
BenchmarkManagementServiceClient client = new BenchmarkManagementServiceClient();
try {
int id = Convert.ToInt32(userId);
if (client.VerifyUser(id)) { //Here is the exception thrown
FormsAuthentication.SetAuthCookie(userId, false);
}
} catch (FormatException) { }
client.Close();
多奇奇怪,因为我可以通过浏览器访问服务的地址,而且几乎相同的代码在另一个项目(Windows Forms)中工作。
感谢您的帮助。
编辑:
内部异常的消息是The remote name could not be resolved
我尝试请求的服务正在Azure-Cloud中运行 ASP.NET项目在我的计算机上本地运行 我的另一个项目(一切正常)也在我的计算机上本地运行。
也许很高兴知道,我必须在没有包Newtonsoft.Json
的情况下创建服务引用。其他在服务引用的代码生成期间发生了警告。
答案 0 :(得分:3)
我是代理人的背后,也有同样的问题。
将此部分添加到我的配置中为我修复了代理身份验证错误。
<system.net>
<defaultProxy useDefaultCredentials="true" />
</system.net>