Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我可以记录输入和输出,但我想组合传入和传出的 xml,以便我可以轻松查看组合结果?这将消除手动挖掘日志文件的任务。
为了实现这一点,我已经实现了 2 个拦截器来获取 xml,但我现在看到了将传出 xml 与传入 xml 相关联的方法。
欢迎任何提示或提示!
解决方案是在传入拦截器中使用 MessageExchange:
示例:在 inIntereptor -> message.getExchange().put("INPUT_LOG", your_long_string); 在输出拦截器中->类似于 message.getExchange().get("INPUT_LOG")
然后你就可以访问原始的soap xml