public interface SOAPActionProcessor
The UPnP protocol layer processes local and remote ActionInvocation
instances. The UPnP transport layer accepts and returns StreamRequestMessages
and StreamResponseMessages. This processor is an adapter between the
two layers, reading and writing SOAP content.
| Modifier and Type | Method and Description |
|---|---|
void |
readBody(ActionRequestMessage requestMessage,
ActionInvocation actionInvocation)
Converts SOAP XML content of the request message and sets input argument values on the given invocation.
|
void |
readBody(ActionResponseMessage responseMsg,
ActionInvocation actionInvocation)
Converts SOAP XML content of the response message and sets output argument values on the given invocation.
|
void |
writeBody(ActionRequestMessage requestMessage,
ActionInvocation actionInvocation)
Converts the given invocation input into SOAP XML content, setting on the given request message.
|
void |
writeBody(ActionResponseMessage responseMessage,
ActionInvocation actionInvocation)
Converts the given invocation output into SOAP XML content, setting on the given response message.
|
void writeBody(ActionRequestMessage requestMessage, ActionInvocation actionInvocation) throws UnsupportedDataException
requestMessage - The request message on which the SOAP content is set.actionInvocation - The action invocation from which input argument values are read.UnsupportedDataExceptionvoid writeBody(ActionResponseMessage responseMessage, ActionInvocation actionInvocation) throws UnsupportedDataException
responseMessage - The response message on which the SOAP content is set.actionInvocation - The action invocation from which output argument values are read.UnsupportedDataExceptionvoid readBody(ActionRequestMessage requestMessage, ActionInvocation actionInvocation) throws UnsupportedDataException
requestMessage - The request message from which SOAP content is read.actionInvocation - The action invocation on which input argument values are set.UnsupportedDataExceptionvoid readBody(ActionResponseMessage responseMsg, ActionInvocation actionInvocation) throws UnsupportedDataException
responseMsg - The response message from which SOAP content is read.actionInvocation - The action invocation on which output argument values are set.UnsupportedDataExceptionCopyright © 2023 jUPnP.org. All rights reserved.