如何记录 Metro 堆栈发送的 SOAP 消息
我正在尝试将使用 Metro 堆栈发送的消息记录到控制台中。 找不到任何办法。
I'm trying to log my messages which are sent using a Metro stack into console.
Could not find any way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
消息记录到标准输出(仅对 METRO 有效!):
在客户端
Java 5:设置系统属性
Java 6 >:设置系统属性
在服务器端
设置系统属性
Message logging to stdout (valid for METRO only!):
On the client
Java 5: Set system property
Java 6: Set system property
On the server side
Set system property
这里一切都有解释:
https://metro.java.net/2.0/guide/Logging .html
以下选项启用记录与控制台的所有通信(从技术上讲,您只需要其中之一,但这取决于您使用的库,因此设置所有四个是更安全的选择)。
Here everything is explained:
https://metro.java.net/2.0/guide/Logging.html
The following options enable logging of all communication to the console (technically, you only need one of these, but that depends on the libraries you use, so setting all four is safer option).
没有提到语言,但假设是 Java,你能不能只使用 Log4J 之类的东西,例如
getResult 只是返回对象上的一个方法。
Didn't mention the language but assuming Java, could you not just use something like Log4J e.g.
where getResult is just a method on the return object.