摘要:
在.net中发送 xml post请求和接受xml 的post请求时,经常会遇到“远程服务器返回错误: (500) 内部服务器错误”。这里有2种解决办法: 第一种方法:修改请求端Content-Type 为“text/xml”(httpclient.Headers.Add("Content-Type", "text/xml");)第二种方法:在我们平常开发异步接口的时候,往往需要开发一个windows service用来发送post请求(可以调用第一种方法);另外需要提供一个web接收端接收对方的异步调用。当接收的post数据是xml时,对方调用你的提供 阅读全文
摘要:
1.send: C# codeWebRequest 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 =@&qu 阅读全文