public interface GlobalMessageListener
| Modifier and Type | Method and Description |
|---|---|
void |
postProcessResponse(String mid,
TransportInfo info)
Callback when a web service response has finished being processed
by the container and was sent back to the client
|
String |
preProcessRequest(Endpoint endpoint)
Callback when a web service request entered the web service container
and before any system processing is done.
|
void |
processRequest(String mid,
com.sun.xml.rpc.spi.runtime.SOAPMessageContext ctx,
TransportInfo info)
Callback when a 1.X web service request is about the be delivered to the
Web Service Implementation Bean.
|
void |
processRequest(String mid,
SOAPMessageContext ctx,
TransportInfo info)
Callback when a 2.X web service request is about the be delivered to the
Web Service Implementation Bean.
|
void |
processResponse(String mid,
com.sun.xml.rpc.spi.runtime.SOAPMessageContext ctx)
Callback when a 1.X web service response was returned by the Web Service
Implementation Bean
|
void |
processResponse(String mid,
SOAPMessageContext ctx)
Callback when a 2.X web service response was returned by the Web Service
Implementation Bean
|
String preProcessRequest(Endpoint endpoint)
endpoint - is the endpoint the web service request is targeted tovoid processRequest(String mid, com.sun.xml.rpc.spi.runtime.SOAPMessageContext ctx, TransportInfo info)
mid - message ID returned by preProcessRequest callctx - the jaxrpc message trace, transport dependentvoid processResponse(String mid, com.sun.xml.rpc.spi.runtime.SOAPMessageContext ctx)
mid - message ID returned by the preProcessRequest callctx - jaxrpc message trace, transport dependent.void processRequest(String mid, SOAPMessageContext ctx, TransportInfo info)
mid - message ID returned by preProcessRequest callctx - the jaxrpc message trace, transport dependentvoid processResponse(String mid, SOAPMessageContext ctx)
mid - message ID returned by the preProcessRequest callctx - jaxrpc message trace, transport dependent.void postProcessResponse(String mid, TransportInfo info)
mid - returned by the preProcessRequest callinfo - the response transport dependent informationCopyright © 2017. All rights reserved.