发送操作:

C# code
WebRequest myHttpWebRequest = WebRequest.Create(http://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文件

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();

 
接收: 
C# code
StreamReader reader = new StreamReader (Reqeust.InputStream);
String xml = reader.ReadToEnd();

相关文章:

  • 2022-12-23
  • 2019-07-05
  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-26
  • 2022-12-23
  • 2021-10-13
  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案