public interface SOAP2MessageGenerator
| Modifier and Type | Method and Description |
|---|---|
void |
deliverMessage(java.io.InputStream in,
MessageReceiver to,
ConnectionInfo connectionInfo,
java.lang.String uniqueAttachmentContextId)
Delivers a single incoming message obtained from reading
in to to. |
void |
deliverMessage(java.io.InputStream in,
MessageReceiver to,
ConnectionInfo connectionInfo,
java.lang.String uniqueAttachmentContextId,
DefaultMessageDiscarder discarder,
Message request)
Delivers a single incoming message obtained from reading
in to to. |
Message |
generateMessage(java.io.InputStream in,
ConnectionInfo connectionInfo,
java.lang.String uniqueAttachmentContextId)
This method generates message objects from the given input stream.
|
Message generateMessage(java.io.InputStream in, ConnectionInfo connectionInfo, java.lang.String uniqueAttachmentContextId) throws java.lang.Exception
in - the stream to read input fromjava.lang.Exceptionvoid deliverMessage(java.io.InputStream in,
MessageReceiver to,
ConnectionInfo connectionInfo,
java.lang.String uniqueAttachmentContextId)
in to to.
Uses default DefaultMessageDiscarder.in - the stream from which to parse the messageto - the receiver to deliver the message toconnectionInfo - transport-related information attached to the message being received; it is passed directly to one of the
receive() methods of the specified MessageReceiver touniqueAttachmentContextId - a unique string to identify the attachment context or null if the message does not contain
an attachmentvoid deliverMessage(java.io.InputStream in,
MessageReceiver to,
ConnectionInfo connectionInfo,
java.lang.String uniqueAttachmentContextId,
DefaultMessageDiscarder discarder,
Message request)
in to to.in - the stream from which to parse the messageto - the receiver to deliver the message toconnectionInfo - transport-related information attached to the message being received; it is passed directly to one of the
receive() methods of the specified MessageReceiver touniqueAttachmentContextId - a unique string to identify the attachment context or null if the message does not contain
an attachmentdiscarder - decides whether to deliver or drop the message