Я пытаюсь отправить POST-запрос в простую службу WCF, которую я написал, но получаю 400 Bad Request. Я пытаюсь отправить данные JSON в сервис. Кто-нибудь может определить, что я делаю не так? : -)
Это мой сервисный интерфейс:
public interface Itestservice
{
[OperationContract]
[WebInvoke(
Method = "POST",
UriTemplate = "/create",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json)]
String Create(TestData testData);
}
Реализация:
public class testservice: Itestservice
{
public String Create(TestData testData)
{
return "Hello, your test data is " + testData.SomeData;
}
}
DataContract:
[DataContract]
public class TestData
{
[DataMember]
public String SomeData { get; set; }
}
И, наконец, мой код клиента:
private static void TestCreatePost()
{
Console.WriteLine("testservice.svc/create POST:");
Console.WriteLine("-----------------------");
Uri address = new Uri("http://localhost:" + PORT + "/testweb/testservice.svc/create");
// Create the web request
HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;
// Set type to POST
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
//request.ContentType = "text/x-json";
// Create the data we want to send
string data = "{\"SomeData\":\"someTestData\"}";
// Create a byte array of the data we want to send
byte[] byteData = UTF8Encoding.UTF8.GetBytes(data);
// Set the content length in the request headers
request.ContentLength = byteData.Length;
// Write data
using (Stream postStream = request.GetRequestStream())
{
postStream.Write(byteData, 0, byteData.Length);
}
// Get response
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
// Get the response stream
StreamReader reader = new StreamReader(response.GetResponseStream());
// Console application output
Console.WriteLine(reader.ReadToEnd());
}
Console.WriteLine();
Console.WriteLine();
}
Кто-нибудь может подумать, что я могу делать неправильно? Как вы можете видеть в клиенте C #, я пытался использовать и application / x-www-form-urlencoded, и text / x-json для ContentType, думая, что это как-то связано с этим, но, похоже, это не так. Я попробовал GET-версию этого же сервиса, и он отлично работает, и возвращает JSON-версию TestData без проблем. Но что касается POST, я сейчас застрял на этом: - (