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(); }