这应该是一件容易的事,但我找不到修复方法。
这就是我想要做的事情:
String input = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><usuario><apellido>perez</apellido><idUsuario>21</idUsuario><nombre>pepe</nombre></usuario>";
然后在这里使用它:
ClientResponse response = webResource.accept("application/xml")
.post(ClientResponse.class, input);
问题是,我正在尝试不同的字符串等,使用&#34;,没有,以及我通过这种方式在客户端尝试和测试的有效xml,不起作用并返回错误。
所以我认为问题可能在于Rest客户端,可能正在阅读\或类似问题。而且我真的不知道如何传递一个字符串&#34;作为一个帖子请愿的角色。