ServiceStack PUT验证

时间:2012-05-06 17:15:10

标签: json rest put servicestack

我正在尝试使用ServiceStack进行PUT操作验证,

这是我的客户代码

    var client = new JsonServiceClient();
    return client.Put<string>(url, content);

我已经验证了连接并在服务器上工作,因为我可以看到断点命中和验证失败,但我回到客户端的所有内容都是

HTTP/1.1 400 NotEmpty
Cache-Control: private
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/7.5
Date: Sun, 06 May 2012 17:08:44 GMT
Content-Length: 0

当我成功进行PUT时也会发生同样的情况,我只是回到原点,有些事情让我相信ServiceStack不想在PUT上返回json。

0 个答案:

没有答案