Interface MessageDispatcher
public interface MessageDispatcher
This interface allows that different transports (such as JMS or HTTP) behave the same way when dispatching a Web Service
operation message.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptiondispatch(DispatchingRequest request) Sends off a Soap Request to a destination and returns it's response.
-
Method Details
-
dispatch
Sends off a Soap Request to a destination and returns it's response.- Parameters:
request- aDispatchingRequestcontaining all the required information to deliver the message.- Returns:
- a
DispatchingResponsewith the content returned by the transport and it's corresponding Content-Type.
-