ラバにSOAPクライアントフローがあり、要求応答を確認するためにcxfインターセプターを追加しました。ラバ構成で正確なHTTP要求応答を表示する方法はありますか?
フローのコードは次のとおりです。
<http:outbound-endpoint address="http://84.19.253.166/service.asmx" method="POST" >
<cxf:jaxws-client
enableMuleSoapHeaders="false"
clientClass="org.tempuri.Service"
port= "ServiceSoap"
wsdlLocation="classpath:service.wsdl"
operation="ProcessRequest"
>
<cxf:inInterceptors>
<spring:bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
</cxf:inInterceptors>
<cxf:outInterceptors>
<spring:bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
</cxf:outInterceptors>
</cxf:jaxws-client>
</http:outbound-endpoint>