我正在尝试构建一个以复杂类型作为输入的基于 REST 和 json 的 WCF 服务。在客户端上,我尝试使用作为 WCF REST Starter Kit 一部分的 HttpClient 来使用此服务。
以下是我的服务代码:
[WebInvoke(Method = "POST", UriTemplate = "/SendData", BodyStyle = WebMessageBodyStyle.Wrapped)]
public void SendData(List<EditorData> input)
{
//Do something
}
我使用了可以在 WebMessageBodyStyle 枚举中找到的其他选项,但无济于事。
这是我在客户端中使用的复杂类型数据合约:
public class EditorData
{
public string key { get; set; }
public long quesno { get; set; }
public string quescontent { get; set; }
}
客户端代码:
List<EditorData> listEditor = new List<EditorData> { new EditorData { key = "key1", quescontent = "qcontent1", quesno = 1},new EditorData { key = "key2", quescontent = "qcontent2", quesno = 2}};
string jsonEditorList = listEditor.ToJSON();
HttpClient client = new HttpClient("http://localhost/RestWcfService/RestService.svc/");
client.DefaultHeaders.Accept.Add("application/json");
HttpResponseMessage response = null;
response = client.Post("SendData", HttpContent.Create(jsonEditorList));
response.EnsureStatusIsSuccessful();
要将我的自定义对象列表转换为 json 字符串,我使用的是在这里找到的扩展方法
当我运行此应用程序时,我收到以下错误:
BadRequest (400) is not one of the following: OK (200), Created (201), Accepted (202), NonAuthoritativeInformation (203), NoContent (204), ResetContent (205), PartialContent (206)
有什么想法吗?
编辑:
这是提琴手的屏幕截图:
更新:
正如 Jason Freitas 所建议的,我检查了提琴手中的响应。这就是说:
The server encountered an error processing the request. See server logs for more details.
所以我进入了 IIS 日志,这是 IIS 中记录的错误:
2012-02-15 13:20:08 fe80::ecdd:d2dd:7f70:bef6%11 POST /RestWcfService/RestService.svc/SendData - 80 - fe80::ecdd:d2dd:7f70:bef6%11 - 400 0 0 0
更新 2
根据 Rajesh 的建议,我为我的 wcf 服务启用了跟踪。下面是服务器抛出的异常:
The incoming message has an unexpected message format 'Raw'. The expected message formats for the operation are 'Xml', 'Json'. This can be because a WebContentTypeMapper has not been configured on the binding. See the documentation of WebContentTypeMapper for more details.
当我将内容类型指定为 json 时,我仍然不明白它是如何获取原始格式的。