本文介绍了Asp.Net Web服务:我想返回错误403禁止的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有在C#/ asp.net编程的Web服务。
I have got a web service programmed in c# / asp.net.
[WebService(Namespace = "http://example.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]
[System.ComponentModel.ToolboxItem(false)]
public class Service: System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public Result GetData()
{
User user = GetUser();
if (user.LoggedIn)
{
return GetData();
}
else
{
// raise exception -> return error 403
}
}
怎么可能返回403错误出此Web服务?我可以抛出一个异常 - 但是这显示了exeption而不是他的错误
How is it possible to return error 403 out of this web service? I can throw an exception - but this shows the exeption and not his error.
任何想法?
推荐答案
要完全回答这个问题 - 这就是code我用(谢谢你黾获取更多信息):
To answer the question completely - this is the code I've used (thank you strider for more information):
[WebService(Namespace = "http://example.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]
[System.ComponentModel.ToolboxItem(false)]
public class Service: System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public Result GetData()
{
User user = GetUser();
if (user.LoggedIn)
{
return GetData();
}
else
{
Context.Response.Status = "403 Forbidden";
//the next line is untested - thanks to strider for this line
Context.Response.StatusCode = 403;
//the next line can result in a ThreadAbortException
//Context.Response.End();
Context.ApplicationInstance.CompleteRequest();
return null;
}
}
这篇关于Asp.Net Web服务:我想返回错误403禁止的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!