Package com.bea.wli.sb.transports
Interface InboundTransportMessageContext
- All Superinterfaces:
TransportMessageContext
- All Known Subinterfaces:
InboundTransportMessageContextExtension
- All Known Implementing Classes:
CoLocatedMessageContext
Inbound Transport Message Context implements the message context
abstraction for incoming messages
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close
(TransportOptions options) Commits the contents of this context and clean up any resources used by this context.Creates a new (empty) response meta data POJOcreateResponseMetaData
(org.apache.xmlbeans.XmlObject rmdXML) Creates a new response meta data POJOvoid
Deprecated.void
setResponsePayload
(Source src) Methods inherited from interface com.bea.wli.sb.transports.TransportMessageContext
getMessageId, getURI
-
Method Details
-
getEndPoint
- Returns:
- the service endpoint object which has received this incoming message
- Throws:
TransportException
-
getRequestMetaData
- Returns:
- the meta-data for the request part of the message, e.g. headers, etc. Returns null if there is no request meta-data
- Throws:
TransportException
-
getRequestPayload
- Returns:
- returns a source (e.g. input stream or a DOM object) for reading data in the body of the request of an inbound message or null if there is no body of the request. Note that the entire body of the payload is retrieved.
- Throws:
TransportException
-
createResponseMetaData
Creates a new (empty) response meta data POJO- Returns:
- empty (new) meta-data for the response part of the message, e.g. headers, etc. Used for initializing the inbound response
- Throws:
TransportException
-
createResponseMetaData
ResponseMetaData createResponseMetaData(org.apache.xmlbeans.XmlObject rmdXML) throws TransportException Creates a new response meta data POJO- Parameters:
rmdXML
- transport provider-specific XML Bean that represents the provider-specific meta data- Returns:
- meta-data for the response part of the message, e.g. headers, etc initialized according to XML bean. Used for initializing the inbound response
- Throws:
TransportException
-
setResponseMetaData
Sets the meta-data for the response part of the message, e.g. headers, etc.- Parameters:
rmd
- Transport Provider-specific POJO that represents response meta data- Throws:
TransportException
-
setResponsePayload
Sets the response payload into the message context Important note: the transport provider is free to access the response payload source from the moment this method call is made up all the way untilclose(TransportOptions)
is called. Any access of response payload source after close() has been called can lead to unpredictable results and is generally unsafe.- Parameters:
src
- source containing the response payload- Throws:
TransportException
-
close
Commits the contents of this context and clean up any resources used by this context. Note: Transport provider should NOT access response payload source after this method call has been made.- Parameters:
options
- specifies additional run-time parameters with respect to processing of inbound response. E.g. it can signal the mode of a given message: one-way versus request/response
-
InboundTransportMessageContextExtension.setReplySender(TransportReplySender)