0

我是 odata4j 概念的新手。使用 odata4j 库 odata4j-0.5-nojpabundle.jar 使用链接 http://code.google.com/p/odata4j/wiki/Tomcat在 tomcat 上启动了生产者。我的生产者被修改为提供一个大型整数列表作为一个名为“整数”的实体集,我可以检索 serviceDoc、collection 并可以应用过滤器。现在尝试在此服务文档上执行发布[尝试添加一个具有相同架构的条目]。

使用帖子正文为http://localhost:8080/OData/example.svc/Integers 发布帖子:

    <?xml version="1.0" encoding="utf-8" ?>  <edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"> <entry>   <id>http://localhost:8080/OData/example.svc/Integers(100)</id>  
<title type="text" />   
<updated>2011-12-29T10:50:33Z</updated>
<author>   <name />    </author>
<link rel="edit" title="Integers" href="Integers(100)" />  
<category term="example.Integers" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
<content type="application/xml"> 
 <m:properties>  
 <d:EntityId m:type="Edm.Int32">100</d:EntityId>    </m:properties>  
 </content>  
 </entry>

收到 406 not Acceptable Unknown content type application/xml;charset=UTF-8. Int 集合内容类型为 application/xml。仍然无法找出为什么会获得此响应。有谁知道我在这里缺少什么。

提前致谢。

4

1 回答 1

0
  1. 使用 application/atom+xml 作为 Content-Type
  2. 条目应该是文档元素(您上面的 xml 格式不正确)

请参阅:http ://www.odata.org/developers/protocols/operations#CreatingnewEntries

希望有帮助,
-约翰

于 2012-01-08T23:08:07.090 回答