Package com.sun.xml.ws.rx.util
Class Communicator
java.lang.Object
com.sun.xml.ws.rx.util.Communicator
Transmits standalone protocol messages over the wire. Provides also some additional
utility methods for creating and unmarshalling JAXWS
Message and Header
objects.
WARNING: This class is a private utility class used by WS-RX implementation.
Any usage outside the intended scope is strongly discouraged. The API exposed
by this class may be changed, replaced or removed without any advance notice.
- Author:
- Marek Potociar (marek.potociar at oracle.com)
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic Communicator.Buildervoidclose()createEmptyRequestPacket(boolean expectReply) Creates a new empty request packetcreateEmptyRequestPacket(String requestWsaAction, boolean expectReply) Creates a new empty request packet with an empty message that has WS-A action setcreateEmptyResponsePacket(Packet requestPacket, String responseWsaAction) Creates an empty (no SOAP body payload) new response packet based for the supplied request packet with the provided response WS-Addressing action set.createNullResponsePacket(Packet requestPacket) Creates a null (no message) response packet based for the supplied request packet.createRequestPacket(Message message, String wsaAction, boolean expectReply) createRequestPacket(Packet originalRequestPacket, Object jaxbElement, String wsaAction, boolean expectReply) createRequestPacket(Object jaxbElement, String wsaAction, boolean expectReply) createResponsePacket(Packet requestPacket, Message message, String responseWsaAction) Creates new response packet based for the supplied request packet with the provided response WS-Addressing action set.createResponsePacket(Packet requestPacket, Object jaxbElement, String responseWsaAction, boolean isClientResponse) Creates new response packet based for the supplied request packet with the provided response WS-Addressing action set.Provides the destination endpoint reference thisCommunicatoris pointing to.getWsaAction(Packet packet) Returns the value of WS-AddressingActionheader of a message stored in thePacket.Returns the value of WS-AddressingToheader of a message stored in thePacket.booleanisClosed()voidsendAsync(Packet request, Fiber.CompletionCallback completionCallbackHandler) Asynchronously sends the requestPacketvoidsendAsync(Packet request, Fiber.CompletionCallback completionCallbackHandler, FiberContextSwitchInterceptor interceptor) voidsetDestinationAddress(EndpointAddress newValue) voidsetDestinationAddressFrom(Packet packet) setEmptyRequestMessage(Packet request, String wsaAction) Creates a new JAX-WSMessageobject that doesn't have any payload and sets it as the current packet content as a request message.setEmptyResponseMessage(Packet response, Packet request, String wsaAction) tryStartSecureConversation(Packet request) If security is enabled, tries to initate secured conversation and obtain the security token reference.
-
Field Details
-
soapMustUnderstandAttributeName
-
-
Method Details
-
builder
-
createRequestPacket
-
createRequestPacket
-
createRequestPacket
-
createEmptyRequestPacket
Creates a new empty request packet- Returns:
- a new empty request packet
-
createEmptyRequestPacket
Creates a new empty request packet with an empty message that has WS-A action set- Returns:
- a new empty request packet
-
createResponsePacket
public Packet createResponsePacket(@NotNull Packet requestPacket, Object jaxbElement, String responseWsaAction, boolean isClientResponse) Creates new response packet based for the supplied request packet with the provided response WS-Addressing action set.- Parameters:
requestPacket- original request the newly created response belongs toresponseWsaAction- WS-Addressing action header value to be setisClientResponse- determines whether the response is technically a client request- Returns:
- newly created response packet
-
createResponsePacket
Creates new response packet based for the supplied request packet with the provided response WS-Addressing action set.- Parameters:
requestPacket- original request the newly created response belongs toresponseWsaAction- WS-Addressing action header value to be set- Returns:
- newly created response packet
-
createEmptyResponsePacket
Creates an empty (no SOAP body payload) new response packet based for the supplied request packet with the provided response WS-Addressing action set.- Parameters:
requestPacket- original request the newly created response belongs toresponseWsaAction- WS-Addressing action header value to be set- Returns:
- newly created empty (no SOAP body payload) response packet
-
createNullResponsePacket
Creates a null (no message) response packet based for the supplied request packet.- Parameters:
requestPacket- original request the newly created response belongs to- Returns:
- newly created null (no message) response packet
-
setEmptyRequestMessage
Creates a new JAX-WSMessageobject that doesn't have any payload and sets it as the current packet content as a request message.- Parameters:
wsaAction- WS-Addressing action header to set- Returns:
- the updated
Packetinstance
-
setEmptyResponseMessage
Overwrites theMessageof the response packet with a newly created emptyMessageinstance. UnlikePacket.setMessage(Message), this method fills in theMessage's WS-Addressing headers correctly, based on the provided request packet WS-Addressing headers. -
getWsaAction
Returns the value of WS-AddressingActionheader of a message stored in thePacket.- Parameters:
packet- JAX-WS RI packet- Returns:
- Value of WS-Addressing
Actionheader,nullif the header is not present
-
getWsaTo
Returns the value of WS-AddressingToheader of a message stored in thePacket.- Parameters:
packet- JAX-WS RI packet- Returns:
- Value of WS-Addressing
Toheader,nullif the header is not present
-
tryStartSecureConversation
public SecurityTokenReferenceType tryStartSecureConversation(Packet request) throws WSTrustException If security is enabled, tries to initate secured conversation and obtain the security token reference.- Returns:
- security token reference of the initiated secured conversation, or
nullif there is no SC configured - Throws:
WSTrustException
-
send
-
sendAsync
public void sendAsync(@NotNull Packet request, @Nullable Fiber.CompletionCallback completionCallbackHandler) Asynchronously sends the requestPacket- Parameters:
request-Packetcontaining the message to be sendcompletionCallbackHandler- completion callback handler to process the response. May benull. In such case a generic completion callback handler will be used.
-
sendAsync
public void sendAsync(@NotNull Packet request, @Nullable Fiber.CompletionCallback completionCallbackHandler, @Nullable FiberContextSwitchInterceptor interceptor) -
getDestinationAddress
Provides the destination endpoint reference thisCommunicatoris pointing to. May returnnull(typically when used on the server side).- Returns:
- destination endpoint reference or
nullin case the destination address has not been specified when constructing thisCommunicatorinstance.
-
setDestinationAddress
-
setDestinationAddressFrom
-
getAddressingVersion
-
getSoapVersion
-
close
public void close() -
isClosed
public boolean isClosed() -
getContainer
-