使用 jersey 客户端发送原始 XML?
String xmlString = "<a>test</a>
WebResource resource = Client.create().resource("http://somehost.com")
resource.put(ClientResponse.class, xmlString)
像上面这样的东西怎么能起作用呢?我没有在另一侧获取 application/xml 标头的内容类型。
String xmlString = "<a>test</a>
WebResource resource = Client.create().resource("http://somehost.com")
resource.put(ClientResponse.class, xmlString)
How can something like the above work? I am not getting content-type of application/xml header on the other side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新
您可以对 put 执行以下操作:
您可以对 get 执行以下操作:
UPDATE
You could do the following for a put:
You could do the following for a get: