RESTful POST问题(GWT):application / x-www-form-urlencoded而不是application / xml

时间:2013-01-18 18:53:17

标签: xml rest gwt post jetty

我正在写一个GWT客户端。 我需要发送一个post请求来调用我服务器上的REST服务。

RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url);
builder.setHeader("Content-Type", "application/xml");
builder.setHeader("Accept", "application/xml");

我将一些序列化数据发送到XML格式,但在服务器端接收

  

应用程序/ x-WWW窗体-urlencoded

服务器端的服务

@POST
@Path("/connexion")
@Consumes("application/xml")
@Produces("application/xml")
public Response test(A a){
// ...
}

我不明白发生了什么。 THX

0 个答案:

没有答案