C#中怎么将XML作为参数post到接口


 

String xml = "<data>中文</data>";
String postData = "data=" + Server.UrlEncode(xml); ;
string strUrl = "http://localhost:29833/WebSite1/xx.aspx";      
// 准备请求... 
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(strUrl); 
myRequest.Method = "POST";       
myRequest.ContentType="application/x-www-form-urlencoded";
myRequest.ContentLength = postData.Length;
Stream newStream=myRequest.GetRequestStream();      
byte[] data = Encoding.GetEncoding("GB2312").GetBytes(postData);
// 发送数据 
newStream.Write(data,0,data.Length);
HttpWebResponse res = myRequest.GetResponse() as HttpWebResponse;
StreamReader sr  = new StreamReader(res.GetResponseStream(), Encoding.UTF8);
String ret = sr.ReadToEnd();
newStream.Close();
Response.Write("你提交的是:" + Server.HtmlEncode( ret));


//==========
接口的接收
Response.ClearContent();
Response.Write(Request.Form["data"]);
Response.End();
 
 

  

from:http://topic.csdn.net/u/20101117/11/bfee4a29-d966-4870-9026-0243767067a6.html


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM