Interface WebServiceMessageCallback
- All Known Implementing Classes:
ActionCallback
,SoapActionCallback
public interface WebServiceMessageCallback
Generic callback interface for code that operates on a
WebServiceMessage
.
Implementations can execute any number of operations on the message, such as set the contents of the message, or set
the SOAPAction
header.
- Since:
- 1.0.0
- Author:
- Arjen Poutsma
-
Method Summary
Modifier and TypeMethodDescriptionvoid
doWithMessage
(WebServiceMessage message) Execute any number of operations on the suppliedmessage
.
-
Method Details
-
doWithMessage
Execute any number of operations on the suppliedmessage
.- Parameters:
message
- the message- Throws:
IOException
- in case of I/O errorsTransformerException
- in case of transformation errors
-