【发布时间】:2016-01-18 20:17:10
【问题描述】:
我正在使用 C# 和 ASP.net 对网页执行 POST。如何读取 XML 响应以了解我的提交是否有错误或成功?
这是我尝试过的,但它只会返回成功/失败消息,不会显示从页面返回的实际 xml。
private void Perform()
{
this.lblResult.Text = string.Empty;
Dictionary<string, string> dictFormValues = new Dictionary<string, string>();
string connectionString = null;
SqlConnection cnn;
SqlCommand cmd;
StringBuilder sql = new StringBuilder();
SqlDataReader reader;
string email = string.Empty;
connectionString = "Data Source=server;Initial Catalog=db;User ID=;Password=";
sql.Append("select TOP 1 maexst ");
sql.Append("from redbone.redlight.dbo.maxima ");
cnn = new SqlConnection(connectionString);
try
{
cnn.Open();
cmd = new SqlCommand(sql.ToString(), cnn);
reader = cmd.ExecuteReader();
while (reader.Read()) { dictFormValues.Add("maexst", reader.GetValue(0).ToString()); }
reader.Close();
cmd.Dispose();
cnn.Close();
}
catch (Exception ex) { Response.Write(ex.Message.ToString()); }
string strIpAddress = System.Web.HttpContext.Current.Request.UserHostAddress;
string strPageTitle = this.Title;
string strPageURL = System.Web.HttpContext.Current.Request.Url.AbsoluteUri;
string strError = "";
bool blnRet = false;
blnRet = Post(dictFormValues, strPageTitle, strPageURL, ref strError);
if (blnRet == true)
{
this.lblResult.Text = "It was good!";
}
else { this.lblResult.Text = strError + ": Error Occured"; }
}
public bool blnRet(Dictionary<string, string> dictFormValues, string strPageTitle, string strPageURL, ref string strMessage)
{
string strEndpointURL = string.Format("http://testtest12test123.aspx");
System.Web.Script.Serialization.JavaScriptSerializer json = new System.Web.Script.Serialization.JavaScriptSerializer();
string strPostData = "";
foreach (var d in dictFormValues) { strPostData += d.Key + "=" + Server.UrlEncode(d.Value) + "&"; }
strPostData += "hs_context=";
System.Net.HttpWebRequest r = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(strEndpointURL);
r.Method = "POST";
r.Accept = "application/json";
r.ContentType = "application/x-www-form-urlencoded";
r.ContentLength = strPostData.Length;
r.KeepAlive = false;
using (System.IO.StreamWriter sw = new System.IO.StreamWriter(r.GetRequestStream()))
{
try { sw.Write(strPostData); }
catch (Exception ex)
{
strMessage = ex.Message;
return false;
}
}
return true;
}
编辑
成功响应
<?xml version="1.0" encoding="utf-8" ?>
<result>
<success>1</success>
<postid>12345</postid>
<errors/>
</result>
失败响应
<?xml version="1.0" encoding="utf-8" ?>
<result>
<success>0</success>
<postid/>
<errors>
<error>Error Listed Here</error>
<error>Error 2 Listed Here</error>
<error>Error 3 Listed Here</error>
</errors>
</result>
【问题讨论】:
-
要读取网络响应,您可以调用“r.GetResponseStream()”并使用流阅读器或直接使用 xmldocument 读取它
-
@bdn02 - 你能提供一个这样的例子吗?