मैं वेब API का उपयोग करके एक वेब सेवा बना रहा हूं। मैंने एक साधारण वर्ग लागू किया
public class ActivityResult
{
public String code;
public int indexValue;
public int primaryCodeReference;
}
और फिर मैंने अपने नियंत्रक के अंदर लागू किया है
[HttpPost]
public HttpResponseMessage Post(ActivityResult ar)
{
return new HttpResponseMessage(HttpStatusCode.OK);
}
लेकिन जब मैं POST में पासिंग एपीआई को फाइल जसन कहता हूं:
{"code":"XXX-542","indexValue":"3","primaryCodeReference":"7"}
मुझे निम्न त्रुटि संदेश प्राप्त हुआ:
{
"Message": "The request entity's media type 'text/plain' is not supported for this resource.",
"ExceptionMessage": "No MediaTypeFormatter is available to read an object of type 'ActivityResult' from content with media type 'text/plain'.",
"ExceptionType": "System.Net.Http.UnsupportedMediaTypeException",
"StackTrace": " in System.Net.Http.HttpContentExtensions.ReadAsAsync[T](HttpContent content, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger, CancellationToken cancellationToken)\r\n in System.Net.Http.HttpContentExtensions.ReadAsAsync(HttpContent content, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger, CancellationToken cancellationToken)\r\n in System.Web.Http.ModelBinding.FormatterParameterBinding.ReadContentAsync(HttpRequestMessage request, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger, CancellationToken cancellationToken)"
}
मैं क्या गलत कर रहा हूं?