| java.lang.Object com.sun.xml.ws.rm.jaxws.runtime.client.ProtocolMessageSender
ProtocolMessageSender | public class ProtocolMessageSender (Code) | | Helper class used to send protocol message addressed to the endpoint.
The messages belong to the following types:
- CreateSequence. A message with a CreateSequence element in its body is sent. The
response message contains a CreateSequenceResponse element in its body
- Last. A message with empty body, and a Sequence header with Last child
is sent. The headers on the body are processed.
- AckRequensted. A message with empty body, and a Sequence header with Last child
is sent. The headers on the body are processed.
- TerminateSequence A message with a TerminateSequence element in its body is sent.
|
sendAckRequested | public void sendAckRequested(OutboundSequence seq, SOAPVersion version) throws RMException(Code) | | Send Message with empty body and a AckRequestedElement (with Last child) down the pipe. Process the response,
which may contain a SequenceAcknowledgementElement.
Parameters: seq - Outbound sequence to which SequenceHeaderElement will belong. |
sendLast | public void sendLast(OutboundSequence seq, SOAPVersion version) throws RMException(Code) | | Send Message with empty body and a single SequenceElement (with Last child) down the pipe. Process the response,
which may contain a SequenceAcknowledgementElement.
Parameters: seq - Outbound sequence to which SequenceHeaderElement will belong. |
|
|