Web服务调用问题

发布于 2024-11-09 05:14:44 字数 865 浏览 0 评论 0原文

我从 ASP.NET 网站调用 Web 服务(需要证书)。当我在本地主机(调试)上测试它时,它可以工作,但在 IIS 6(Windows Server 2003)上它不起作用并引发异常:

请求失败,状态为 HTTP 403:禁止。

这是代码,我如何调用 Web 服务:

  Service service = new Service();
  service.ClientCertificates.Add(new X509Certificate("certificate path", "password"));
  service.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;

  ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(ValidationCallBack);
  Result res = service.GetResult();


  private static bool ValidationCallBack(object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error)
  {
       return true;
  }

此错误的原因是什么以及如何避免此错误?

我尝试过使用 winForms 进行 Web 服务调用,它在服务器上运行良好。所以我认为这是 IIS 问题...

谢谢!

From ASP.NET web site I'm calling web service (which requires certificate). When I testing it on localhost (debugging) it works, but on IIS 6 (windows server 2003) it does not works and throws an exception:

The request failed with HTTP status
403: Forbidden.

Here is the code, how I'm calling web service:

  Service service = new Service();
  service.ClientCertificates.Add(new X509Certificate("certificate path", "password"));
  service.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;

  ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(ValidationCallBack);
  Result res = service.GetResult();


  private static bool ValidationCallBack(object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error)
  {
       return true;
  }

What is the reason of this error and how can I avoid this?

I've tried web service call with winForms and it works fine on server. So I think it is IIS problem...

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苏别ゝ 2024-11-16 05:14:44

要解决此问题,您应该查看此链接

403 - 禁止。你可以收到这个
通用 403 状态代码(如果 Web)
站点没有默认文档集,并且
该站点未设置为允许目录
浏览。欲了解更多信息
如何解决这个问题,请点击
以下文章编号可查看
Microsoft 知识库中的文章
基础:
320051 如何
配置默认文档
互联网信息服务

403.7 - 需要客户端证书。您已将服务器配置为
要求客户提供证书
身份验证,但您没有
有效的客户证书
已安装。
186812 PRB:
错误消息:403.7 禁止:客户端
需要证书

To resolve this you should look at this link

403 - Forbidden. You can receive this
generic 403 status code if the Web
site has no default document set, and
the site is not set to allow Directory
Browsing. For more information about
how to resolve this problem, click the
following article number to view the
article in the Microsoft Knowledge
Base:
320051 How to
configure the default document in
Internet Information Services

403.7 - Client certificate required. You have configured the server to
require a certificate for client
authentication, but you do not have a
valid client certificate
installed.
186812 PRB:
Error Message: 403.7 Forbidden: Client
Certificate Required

风轻花落早 2024-11-16 05:14:44

您应该在服务器端启用跟踪更好地理解这个问题。您将看到更好的异常消息或可以为您提供线索的内容。

You should enable tracing on the server side for a better understanding os this issue. You will see a better exception message or something that will give you a clue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文