我正在使用ASP.NET开发Web服务。我没有使用WCF。我正在使用传统的Web服务技术。但我遇到了一个大问题。我希望客户端为每个请求传递soap标头中的凭据,以便验证它们。我创建了一个验证功能。我不想在我的服务类的每个函数中调用该函数。所以我在我的服务类的构造函数中调用该函数。如果验证失败。我想抛出异常。但我知道这不适合在Web服务中抛出异常。所以请告诉我在.NET Web服务中抛出异常的最有效方法以及对我的代码的任何改进建议。以下是我的代码。
我的服务代码
public class math : System.Web.Services.WebService
{
public AuthHeader Authentication;
public math()
{
if(Authentication==null || Authentication.Username!="username" || Authentication.Password!="mypassword")
{
throw new Exception("Authentication failed");
}
}
[WebMethod]
[SoapHeader("Authentication",Required=true)]
public int Sum(int num1,int num2)
{
return num1 + num2;
}
}
我的身份验证标题类
public class AuthHeader : SoapHeader
{
public string Username { get; set; }
public string Password { get; set; }
}
答案 0 :(得分:0)
我会说,如果出现任何错误(在您的情况下为Authentication Error)而引发异常,则返回soap错误响应(下面的WebServiceError类)。
public class WebServiceError
{
public string ErrorCode { get; set; }
public string ErrorMessage { get; set; }
}