我已经下载并使用了一个DataServiceProvider
示例,非常基本和常见的“hello world”(带有Product
和Category
实体的那个)。我正在使用最新的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();