请求失败,HTTP 状态 401:未经授权

发布于 2024-09-10 23:15:13 字数 296 浏览 5 评论 0原文

我有一个在 IIS6 (XP Pro SP2) 中运行的 .NET 2.0 网站 (VB) 和托管 ASMX Web 服务的 .NET 3.5(当然,在 IIS 的 ASP.NET 选项卡下配置为 .NET2)。

在 Chrome 中,我可以成功调用 ASMX 并调用 Web 方法。但是,在代码中调用 Web 方法时,我从 .NET 2.0 网站得到:

请求失败,HTTP 状态为 401:未经授权。

如何解决此问题?

I have a .NET 2.0 website (VB) running in my IIS6 (XP Pro SP2) and a .NET 3.5 (configured as .NET2 under IIS's ASP.NET tab, of course) hosting an ASMX web service.

In Chrome, I can call the ASMX and invoke the web methods successfully. However, in calling the web methods in code, from the .NET 2.0 website I get:

The request failed with HTTP status 401: Unauthorized.

How do I get around this?

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

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

发布评论

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

评论(5

染火枫林 2024-09-17 23:15:13

初始化 webService 对象时,您需要在应用程序中设置凭据。

类似 webService.UseDefaultCredentials = true

这会将请求的凭据设置为执行应用程序的当前用户。

You need to set the credentials in you application when you initialise the webService object.

Something like webService.UseDefaultCredentials = true

This will set the credentials of the request to the current user executing the application.

待"谢繁草 2024-09-17 23:15:13

你可以使用这个:

webservice.UseDefaultCredentials = true;

如果不起作用,请使用下面的代码而不是上面的代码

webservice.Credentials = new NetworkCredential("userName", "password", "domain");
webservice.PreAuthenticate = true;

注意:用户名密码和域是用户的用户凭证访问Web服务

因此请确保用户有权访问Web服务,

也许该用户是Windows用户

,您可以从以下位置获取域:右键单击“我的电脑”和属性
域是计算机名称或工作组

you can use this:

webservice.UseDefaultCredentials = true;

if does not work, use the below code instead of the code above

webservice.Credentials = new NetworkCredential("userName", "password", "domain");
webservice.PreAuthenticate = true;

note: the username Password and domain is the user credential of the user that access to webservice

so make sure that user have permission to access to web service

maybe the user is the windows user

and you can get the domain from: right click in "MyComputer" and properties
the domain is the Computer name or Workgroup

极度宠爱 2024-09-17 23:15:13

在 IIS 7 中,启用匿名身份验证,您应该能够进行调试。

In IIS 7, enable anonymous authentication and you should be able to debug.

吾性傲以野 2024-09-17 23:15:13
webService.UseDefaultCredentials = true

这对我有用。

webService.UseDefaultCredentials = true

This worked for me.

書生途 2024-09-17 23:15:13

我正在这样测试:

CheckListService.CheckList chkSrvice = new CheckListService.CheckList() {
    UseDefaultCredentials = true };

im am test this way:

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