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 javax.xml.soap.SOAPMessage |
SOAPMessageFromJMSMessage(Message message,
javax.xml.soap.MessageFactory messageFactory)
Extracts a
javax.xml.soap.SOAPMessage object from the
javax.jms.Message object into which it was transformed
using the SOAPMessageIntoJMSMessage method. |
static Message |
SOAPMessageIntoJMSMessage(javax.xml.soap.SOAPMessage soapMessage,
Session session)
Transforms a
javax.xml.soap.SOAPMessage message
into a javax.jms.Message message. |
public static Message SOAPMessageIntoJMSMessage(javax.xml.soap.SOAPMessage soapMessage, Session session) throws JAXMException
javax.xml.soap.SOAPMessage
message
into a javax.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 javax.xml.soap.SOAPMessage SOAPMessageFromJMSMessage(Message message, javax.xml.soap.MessageFactory messageFactory) throws JAXMException
javax.xml.soap.SOAPMessage
object from the
javax.jms.Message
object into which it was transformed
using the SOAPMessageIntoJMSMessage
method.
The MessageFactory
parameter is used to construct the
javax.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) 2011, Oracle and/or its affiliates. All rights reserved.