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.
SOAPMessage オブジェクトがあります。それを解析して一連の Jaxb クラスに変換したいと思います。Jaxb が非整列化できる形式にメッセージを変換するにはどうすればよいですか?
javax.xml.bind.Unmarshaller.unmarshal(??)
SOAP メッセージの本文には、実際のデータと非整列化するビットが含まれています。次のことができます。
Node node = soapMessage.getSOAPBody(); unmarshaller.unmarshal(node)(