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.
有谁知道是否有办法使用 java 将 SOAP 信封的所有 XML 内容传递给字符串?
谢谢,
取决于您对 SOAP 使用的内容以及您是否希望服务器或客户端进行日志记录。
我知道在 Axis2 中你可以使用它来获取它
MessageContext msgContext = MessageContext.getCurrentMessageContext(); if (msgContext != null) { return msgContext.getEnvelope().getBody().toString(); }