使用HttpWebRequest发布xml数据时遇到了一些问题。其实我想发布3个表格变量
其中2个用于凭证,第3个用于XML数据到api,api将进行身份验证并处理xml数据,如果没有发现错误,将返回成功。
这是文档中的内容。
数据将通过HTTPS FORM帖子传递到网关,并在成功接收数据后返回字符串值“success”。将发布三个总的FORM变量,其中两个将包含凭证,第三个将包含HR-XML数据。如果由于任何原因发布失败,将返回字符串值“error”。
表单字段 integration_field1 = 1234,integration_field2 = 2345pwd,hrxml =包含HR-XML顺序的表单字段(字符串)
这是我编码的内容..
string strId = "123";
string strName = "test";
StreamReader sr2 = File.OpenText(Server.MapPath("~/App_Data/XMLFile.xml"));
string xml = sr2.ReadToEnd();
sr2.Close();
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xml);
xml = HttpUtility.UrlEncode(xmlDoc.OuterXml);
System.Text.UTF8Encoding encoding = new UTF8Encoding();
string postData = "xmldata=" + xml;
byte[] data = encoding.GetBytes(postData);
// Prepare web request...
HttpWebRequest myRequest =
(HttpWebRequest)WebRequest.Create("http://localhost:1994/TestXMLPost/PostData.aspx");
myRequest.Method = "POST";
myRequest.ContentType = "application/x-www-form-urlencoded";
myRequest.ContentLength = data.Length;
Stream newStream = myRequest.GetRequestStream();
// Send the data.
newStream.Write(data, 0, data.Length);
newStream.Close();
WebResponse res = (HttpWebResponse)myRequest.GetResponse();
StreamReader sr = new StreamReader(res.GetResponseStream());
string str = sr.ReadToEnd();
sr.Close();
在PostData.aspx上,我已将其用于测试目的
if (Request.Form.Count > 0)
{
Response.Write( Request.Form["xmldata"] + "");
}
我在回复中没有收到任何东西。只有错误“远程服务器返回错误:(500)内部服务器错误。” 这是我要模拟使用HttpWebRequest的HTML表单。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>testing</title>
</head>
<body>
<form action="https://myurl.com/samplepage.cfm" method="post" >
integration_id<input type="text" name="integration_id" value="id" /><br />
integration_pwd<input type="text" name="integration_pwd" value="pwd" /><br />
<textarea name="hrxml" style="height: 404px; width: 593px">
<?xml version="1.0" encoding="UTF-8"?>
<BackgroundCheck account="test" userId="test" password="test">
<BackgroundSearchPackage>
<ReferenceId>
<IdValue>12345678</IdValue>
</ReferenceId>
<PersonalData>
<PersonName>
<GivenName>TEST</GivenName>
<FamilyName primary="undefined">TEST</FamilyName>
</PersonName>
<DemographicDetail>
<GovernmentID countryCode="US" issuingAuthority="SSN">00000000000000</GovernmentID>
<DateOfBirth>1901-01-01</DateOfBirth>
</DemographicDetail>
</PersonalData>
</BackgroundSearchPackage>
</BackgroundCheck>
</textarea>
<input type="submit" />
</form>
</body>
</html>
由于
答案 0 :(得分:0)
使用fiddler查看实际通过电汇的内容。
或者写一份你要发送到磁盘的副本。
除了上述内容之外,您还可以检查目标计算机的事件查看器以查找与错误相关的条目(如果您没有任何备用错误记录)。
底线是你需要看看发生了什么。