0

我已经下载并使用了一个DataServiceProvider示例,非常基本和常见的“hello world”(带有ProductCategory实体的那个)。我正在使用最新的Microsoft.Data.Services软件包。

我已经建立了一个客户端来对抗它并且它有效。该GET请求返回一个Category,我对其进行编辑并调用SaveChanges()更新。

当我决定将代码从“hello world”虚拟环境移动到我现有的 IIS 上的大型应用程序时,更新停止工作。我说的是相同的代码——客户端和服务器!

GET工作正常,但SaveChanges()响应抛出异常:

<?xml version="1.0" encoding="utf-8"?><m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><m:code /><m:message xml:lang="en-US">Content-Type header value missing.</m:message></m:error>

虽然我可以在提琴手中清楚地看到我确实发送了一个Content-Type标题: "Content-Type: application/atom+xml"

var sessionedUri = new Uri("http://myapp/odata.svc/", UriKind.Absolute);
        _oDataContext = new DemoService(sessionedUri);

        _oDataContext.MergeOption = MergeOption.OverwriteChanges;
        Category cate = _oDataContext.CreateQuery<Category>("Categories").FirstOrDefault();

        _oDataContext = new DemoService(sessionedUri);
        cate.Name = "somethin";
        _oDataContext.AttachTo("Categories", cate);
        _oDataContext.UpdateObject(cate);
        _oDataContext.SaveChanges();
4

1 回答 1

0

正如上面的评论所说:

Httphandlers 会干预通信,尽管我发送了标头,但它可能会删除标头。谢谢埃里克

于 2013-03-21T06:41:31.483 回答