请求失败,HTTP 状态 401:未经授权
我有一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
初始化
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.
你可以使用这个:
如果不起作用,请使用下面的代码而不是上面的代码
注意:用户名密码和域是用户的用户凭证访问Web服务,
因此请确保用户有权访问Web服务,
也许该用户是Windows用户
,您可以从以下位置获取域:右键单击“我的电脑”和属性
域是计算机名称或工作组
you can use this:
if does not work, use the below code instead of the code above
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
在 IIS 7 中,启用匿名身份验证,您应该能够进行调试。
In IIS 7, enable anonymous authentication and you should be able to debug.
这对我有用。
This worked for me.
我正在这样测试:
im am test this way: