我正在尝试创建一个将返回超过 1 个字符串的 Web 服务。它将返回 4 个字符串。我以前没有 webservices,我过去只返回 true 或 false 值。但现在我需要更多数据。
这是我的网络服务。
[WebMethod]
public string get_currency(string date, string cur_code) {
string rtn = "";
try
{
using (SqlConnection conn = new SqlConnection("Data Source=xxx-xxxxx;Initial Catalog=xxx;Persist Security Info=True;User ID=xxx;Password=xxx"))
{
string selectSql = "select date,code,banknote_buying,banknote_selling from Currencies where date = '" + date + "' and code ='" + cur_code + "'";
SqlCommand comm = new SqlCommand(selectSql, conn);
conn.Open();
SqlDataReader dr = comm.ExecuteReader();
if (dr.Read()) {
rtn = dr["date"].ToString() + dr["code"].ToString() + dr["banknote_buying"].ToString() + dr["banknote_selling"].ToString();
}
}
}
catch (Exception ex)
{
return "Fail";
}
return rtn;
}
我怎样才能将它们作为正确的 SOAP 对象返回