1.send:
2.receive:
- C# code
- <!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->WebRequest myHttpWebRequest = WebRequest.Create("http://abc.com/xxx.aspx");
// Set the 'Method' property of the 'Webrequest' to 'POST'.
myHttpWebRequest.Method = "POST";
// Create a new string object to POST data to the Url.
string postData = @"<?xml version="1.0" encoding="UTF-8" ?>
<ROOT>
<CONFIG>
<TYPE>IN </TYPE>
<WORKTYPE>2 </WORKTYPE>
</CONFIG>
<DATA>
<POLICY>
<UNITCODE>分公司代码 </UNITCODE>
<APPLYNO>投保单号码 </APPLYNO>
<APPLYENDORSENO>批单申请号码 </APPLYENDORSENO>
</POLICY>
</DATA>
</ROOT> ";
ASCIIEncoding encoding = new ASCIIEncoding ();
byte[] byte1 = encoding.GetBytes (postData);
// Set the content type of the data being posted.
myHttpWebRequest.ContentType = "application/x-www-form-urlencoded";
// Set the content length of the string being posted.
myHttpWebRequest.ContentLength = byte1.Length;
Stream newStream = myHttpWebRequest.GetRequestStream ();
newStream.Write (byte1, 0, byte1.Length);
// Close the Stream object.
newStream.Close ();
HttpWebResponse response = myHttpWebRequest.GetResponse();
2.receive:
- C# code
- <!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->StreamReader reader = new StreamReader (Reqeust.InputStream);
String xml = reader.ReadToEnd();
本文提供了一个使用C#发送POST请求的例子,并展示了如何接收返回的数据。通过ASCII编码将XML格式的数据转换为字节流进行传输,同时介绍了设置HTTP请求头的方法。
892

被折叠的 条评论
为什么被折叠?



