消费Web服务SOAP标头

时间:2018-11-01 13:49:50

标签: .net web-services soapheader

我正在尝试学习Web服务并创建了一个简单的服务。现在,我想通过身份验证来保护它。我发现人们通过从SoapHeader派生一个类来实现这一目标。我实现了它,但是现在我的网络方法还需要一个参数。我认为我做错了,因为在其他示例中,人们没有将其身份验证值作为参数发布。

这是我的网络服务代码。

    public class AuthUser : SoapHeader
    {
        public string Uname;
        public string Pwd;
    }
    public AuthUser au;

    string cs = ConfigurationManager.ConnectionStrings["ModelCCM"].ConnectionString;
    [WebMethod]
    [SoapHeader("au", Direction = SoapHeaderDirection.In)]
    public string InsertCustomer(string Name, string Phone, string City, string Email)
    {
        if (au.Uname == "****" && au.Pwd == "*****")
        {
            int getCustomerId;
            using (SqlConnection con = new SqlConnection(cs))
            {
                using (SqlCommand cmd = new SqlCommand("InsertCustomer", con))
                {
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.Parameters.AddWithValue("@Name", Name);
                    cmd.Parameters.AddWithValue("@Phone", Phone);
                    cmd.Parameters.AddWithValue("@City", City);
                    cmd.Parameters.AddWithValue("@Email", Email);
                    cmd.Connection = con;
                    con.Open();
                    getCustomerId = Convert.ToInt32(cmd.ExecuteScalar());
                    con.Close();
                    return getCustomerId.ToString();
                }
            }
        }
        else
        {
            return "Unauthorized Attempt";
        }
    }

这是我简单易用的控制台应用程序。

       static void Main(string[] args)
    {
        ServiceReference1.WebServiceCCMSoapClient ws = new ServiceReference1.WebServiceCCMSoapClient();
        ServiceReference1.AuthUser authUser = new ServiceReference1.AuthUser();
        authUser.Uname = "****";
        authUser.Pwd = "******";     
        string result = ws.InsertCustomer(authUser,"test", "test", "test", "test"); // here I need to pass authUser as parameter
        Console.WriteLine(result);
        Console.ReadLine();
    } 

在另一个示例中,人们曾经有这条线

   webService.AuthHeaderValue = authentication;

但是在我的代码中我找不到AuthUserValue,并且如果可能的话,我不想将那些身份验证值作为参数传递给WebMethod。 这是唯一的方法还是我错过了什么?

谢谢。

1 个答案:

答案 0 :(得分:0)

我自己找到了解决方案。

    ServiceReference1.WebServiceCCMSoapClient ws = new 
    ServiceReference1.WebServiceCCMSoapClient();

需要使用ServiceReference1.ActualServiceName。这样我就可以使用ServiceNameValue。