public class MessageTransformer
extends java.lang.Object
Transformer
class encapsulates the functionality to transform SOAP and JMS messages.Modifier and Type | Method and Description |
---|---|
static jakarta.xml.soap.SOAPMessage |
SOAPMessageFromJMSMessage(jakarta.jms.Message message,
jakarta.xml.soap.MessageFactory messageFactory)
Extracts a
jakarta.xml.soap.SOAPMessage object from the jakarta.jms.Message object into which
it was transformed using the SOAPMessageIntoJMSMessage method. |
static jakarta.jms.Message |
SOAPMessageIntoJMSMessage(jakarta.xml.soap.SOAPMessage soapMessage,
jakarta.jms.Session session)
Transforms a
jakarta.xml.soap.SOAPMessage message into a jakarta.jms.Message message. |
public static jakarta.jms.Message SOAPMessageIntoJMSMessage(jakarta.xml.soap.SOAPMessage soapMessage, jakarta.jms.Session session) throws JAXMException
jakarta.xml.soap.SOAPMessage
message into a jakarta.jms.Message
message.soapMessage
- the SOAPMessage to be converted to the JMS Message.session
- The JMS Session to be used to construct the JMS Message.JAXMException
- If any error is encountered when transforming the message.public static jakarta.xml.soap.SOAPMessage SOAPMessageFromJMSMessage(jakarta.jms.Message message, jakarta.xml.soap.MessageFactory messageFactory) throws JAXMException
jakarta.xml.soap.SOAPMessage
object from the jakarta.jms.Message
object into which
it was transformed using the SOAPMessageIntoJMSMessage
method.
The MessageFactory
parameter is used to construct the jakarta.xml.soap.SOAPMessage
object.
If MessageFactory
is null
then the default SOAP MessageFactory will be used to construct
the SOAP message.
message
- The JMS message from which the SOAP message is to be extracted.messageFactory
- The SOAP MessageFactory to be used to contruct the SOAP message.JAXMException
- If any error is encountered when extracting the message.Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved.