クライアントに相当するEndpointInterceptorAdapterはありますか?には、クライアントのEndpointInterceptorAdapterに相当するものがありますか?
私はクライアントからの発信メッセージと受信メッセージを傍受して、いくつかの作業をする必要があるためです。
EndpointInterceptorAdapterはエンドポイントメッセージのみを代行受信します。私はあなたがSmartEndpointInterceptor
public class SmartEndpointInterceptorImpl implements
SmartEndpointInterceptor
{
public boolean handleRequest(MessageContext messageContext, Object endpoint)
throws Exception
{
SaajSoapMessage soapSaajMsg = (SaajSoapMessage)messageContext.getRequest();
return true;
}
public boolean handleResponse(MessageContext messageContext, Object endpoint)
throws Exception {
return true;
}
//I omitted two more methods
}
興味深い...私はこれを試して、報告するつもりです:) – Benchik
これは依然としてクライアントではなくエンドポイントだけを傍受します。他のアイデア? – Benchik