正在使用web服务SOAP标头



我正在尝试学习web服务,并创建了一个简单的web服务。现在,我想通过身份验证来保护它。我发现人们通过从SoapHeader派生一个类来实现这一点。我做到了,但现在我的webmethod还需要一个参数。我认为我做错了什么,因为在其他示例中,人们不将身份验证值作为参数发布。

这是我的Web服务代码。

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。这是唯一的方法吗?还是我错过了什么?

谢谢。

我自己找到了解决方案。不使用

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

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

相关内容

  • 没有找到相关文章

最新更新