У меня есть пример htm-файла со следующей структурой, он отправляет xml и получает ответ xml. Мне нужно сделать то же самое с C #. Смотрите мой код C # ниже HTML.
<html>
<body>
<table>
<tr><td width=10%> </td><td><h2>API Test Form</h2></td></tr>
<tr><td width=10%> </td><td><h3>Command: get_Details </h3></td></tr>
<form action="https://test.test.com/getDetails" method=POST>
<tr>
<td width=10%> </td>
<td>
<textarea name="xml" rows=15 cols=80>
<?xml version="1.0" encoding="UTF-8"?>
<Request>
<test1>xcvb</test1>
</Request>
</textarea>
</td>
</tr>
<tr><td width=10%> </td><td> </td></tr>
<tr><td width=10%> </td><td><input type="submit" value="Submit Request"></td></tr>
</table>
</form>
</body>
</html>
private static string MSDNHttpPost1()
{
// Create a request using a URL that can receive a post.
WebRequest request = WebRequest.Create("https://test.test.com/getDetails");
// Set the Method property of the request to POST.
request.Method = "POST";
// Create POST data and convert it to a byte array.
var doc = new XmlDocument();
doc.Load(@"C:\request.xml");
string postData = doc.InnerXml;
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";
//request.ContentType = "text/xml";
// Set the ContentLength property of the WebRequest.
//request.ContentLength = byteArray.Length;
// Get the request stream.
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();
// Get the response.
WebResponse response = request.GetResponse();
// Display the status.
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);
// Read the content.
string responseFromServer = reader.ReadToEnd();
// Display the content.
Console.WriteLine(responseFromServer);
// Clean up the streams.
reader.Close();
dataStream.Close();
response.Close();
return responseFromServer;
}
Код C # был адаптирован с сайта MSDN. Но ответ показывает мне сообщение с ошибкой, в которой в основном говорится, что сервер не может прочитать XML-файл. Мне было предложено включить "data =" перед xml при публикации. Но это не имеет значения в ответе.
Есть какие-нибудь подсказки относительно того, что мне не хватает?