0

考虑这段代码:

      HttpResponseMessage httpResponseMessage = 
    httpClient.PostAsJsonAsync("http://logger/RavenDB/docs/MdbLogger", 
new { Content = log.Content + i, Id = i, test = "" }).Result;

在没有 MdbLogger 的情况下发送请求时一切正常。但是当使用 MdbLogger 发送请求时,我得到 400 http 响应。

无法弄清楚该怎么做 您的请求与任何内容都不匹配

Raven 知道该怎么做,对不起...

如何将数据发布到 restful ravendb 中的特定数据库

4

1 回答 1

1

调用特定数据库的格式是:

http://logger/RavenDB/databases/MdbLogger/docs

一般来说,路径总是相同的,但它开始于/databases/db-name

于 2013-10-16T16:21:18.473 回答