如何获取Web Service的请求来源?
我想
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prin="http://localhost/example"> <soapenv:Header/> <soapenv:Body> THIS </soapenv:Body> </soapenv:Envelope>
从 Java 发送的 Web 服务请求中获取数据。
我使用 javax.jws
I want to get
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prin="http://localhost/example"> <soapenv:Header/> <soapenv:Body> THIS </soapenv:Body> </soapenv:Envelope>
from webservice request I send from Java.
I use javax.jws
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过编程方式(侵入式)或通过配置来完成,而无需更改任何代码。 此页面记录了如何配置 JAX-WS RI:
转储 SOAP 消息在客户端,使用以下系统属性:
要在服务器端转储 SOAP 消息,请使用以下系统属性:
This can be done programmatically (invasive) or by configuration without changing any code. This page documents how to configure JAX-WS RI:
To dump SOAP messages on the client side, use the following system property:
To dump SOAP messages on the server side, use the following system property:
设置以下虚拟机属性:
Set the following VM property: