messageContext | Object Message context from which to get the service pipeline. A message context contains properties for the SOAP message and provides access to the SOAP message. Integration Server creates the message context and passes it to the header handler. All handlers invoked by a given instance of a SOAP request or SOAP response use the same message context, which enables you to use the message context to pass information among handlers. |
servicePipeline | Document Document (IData) containing the service pipeline. The contents of servicePipeline depend on whether the pub.soap.handler:getServicePipeline service executes as part of a consumer handler chain or a provider handler chain and which type of handler service (request, response, or fault) executes the service. | |
For this consumer handler service... | servicePipeline contains... | |
Request handler service | Contents of the web service connector pipeline after any pipeline mapping or manipulation occurs during execution of the web service connector but just before Integration Server sends the SOAP request. | |
Response handler service | The pipeline that becomes the web service connector output pipeline. At this point, the pipeline does not contain data from SOAP response. Integration Server adds the data form the SOAP response after handler processing completes. | |
Fault handler service | The contents of the web service connector output pipeline. At this point, the pipeline does not contain data from the SOAP fault. Integration Server adds the data form the SOAP fault after handler processing completes. | |
For this provider handler service... | servicePipeline contains... | |
Request handler service | The pipeline passed as input to the endpoint service. At this point, the pipeline does not yet contain data from the SOAP request. Integration Server places data from the SOAP request in the pipeline after handler processing completes | |
Response handler service | The output pipeline of the endpoint service that corresponds to the invoked web service operation. servicePipeline also contains data from the SOAP request if the endpoint service did not drop the data from the pipeline during service execution. | |
Fault handler service | The output pipeline of the endpoint service that corresponds to the invoked web service operation. servicePipeline also contains data from the SOAP request if the endpoint service did not drop the data from the pipeline during service execution. |