我在 mule 中有一个 SOAP 客户端流,并且我添加了 cxf 拦截器来查看请求响应。有没有办法在 mule 配置中查看确切的 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>