这是我的代码:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://localhost:1111");
request.Method = "POST";
request.ContentType = "text/xml";
byte[] byteArray = System.Text.Encoding.ASCII.GetBytes("hello world");
request.ContentLength = byteArray.Length;
request.UserAgent = ".NET Framework Test Client";
Stream dataStream = request.GetRequestStream();
dataStream.Write(byteArray, 0, byteArray.Length);
dataStream.Close();
WebResponse response = request.GetResponse();
Debug.Write("done!");
这是错误
类型' System.Net.WebException'的例外情况发生在System.dll中但未在用户代码中处理
其他信息:远程服务器返回错误:(500)内部服务器错误。
我几乎跟着这个:http://msdn.microsoft.com/en-us/library/debx8sh9(v=vs.110).aspx进行了一些编辑以尝试修复,但无济于事。我不认为这是远程服务器的问题 - 它是我在SOAPUI中设置的测试。