我在这里看到了一些类似的问题,但没有一个能解决这个问题。
我有一个WCF Rest Web服务,它可以正常使用GET。一种方法是POST,每当我调用它传递json参数时,当方法在Web服务器上运行时,传递的参数为null。
以下是代码:
客户来电:
public async Task Test()
{
HttpClient client;
client = new HttpClient();
client.MaxResponseContentBufferSize = 2147483646;
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
ContactParameter cp = new ContactParameter();
cp.ApptDateFrom = DateTime.Now;
cp.ApptDateTo = DateTime.Now.AddDays(1);
cp.Code = "00";
cp.Type = Enums.ContactType.Person;
cp.Status = string.Empty;
string RestUrl = "http://localhost:61919/data.svc/GetBooked";
var uri = new Uri(string.Format(RestUrl, string.Empty));
JsonSerializerSettings microsoftDateFormatSettings = new JsonSerializerSettings
{
DateFormatHandling = DateFormatHandling.MicrosoftDateFormat,
};
//json string = {"Code":"00","ApptDateTo":"2017-11-22T14:02:01.8758558+00:00","ApptDateFrom":"2017-11-21T14:02:01.8718458+00:00","Type":67,"Status":"A"}
var json = JsonConvert.SerializeObject(cp);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var response = await client.PostAsync(uri, content);
}
WCF Web服务合同:
[OperationContract]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "GetBooked")]
List<Contact> GetBooked(ContactParameter contactParameter);
联系参数类型
namespace CatService.Types
{
[DataContract (Name = "contactParameter")]
public class ContactParameter
{
[DataMember(Name = "Code")]
public string Code { get; set; }
[DataMember(Name = "ApptDateTo")]
public DateTime ApptDateTo { get; set; }
[DataMember(Name = "ApptDateFrom")]
public DateTime ApptDateFrom { get; set; }
[DataMember(Name = "Type")]
public Enums.Enums.Type Type { get; set; }
[DataMember(Name = "Status")]
public string Status { get; set; }
}
}
我尝试过更改WebMessageBodyStyle.Bare,但后来我收到了StatusCode:400,ReasonPhrase:&#39;错误请求&#39;。 如果我尝试一种只接受字符串的测试方法,它就可以工作。
答案 0 :(得分:0)
我也遇到了同样的问题。我建议,你应该在另一个控制台应用程序上尝试你的Post方法。因为POST方法不在URL上。
答案 1 :(得分:0)
这是一个日期时间问题,我没有在之前的帖子上实现答案。 Basicaly:
JsonSerializerSettings microsoftDateFormatSettings = new JsonSerializerSettings
{
DateFormatHandling = DateFormatHandling.MicrosoftDateFormat,
};
然后当你序列化....
var json = JsonConvert.SerializeObject(jsonString, microsoftDateFormatSettings);