次の post メソッドを使用して WCF サービスを開発しました。
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "/InsertBearingData")]
bool InsertBearingData(String JSONString);
Fiddler を使用してこのメソッドの HTTP POST リクエストを作成していますが、Status Code - 400 Bad Request
. これは策定された要求です。
リクエストヘッダー:
Host: localhost:21468
Content-Length: 96
Content-Type: application/json
リクエスト本文:
[{"start time":"29-03-2013 11:20:11.340","direction":"SW","end time":"29-03-2013 11:20:14.770"}]
成功する応答を得るために、適切な要求を作成する方法を教えてください。