如何打印发送到 Web 服务 (CXF2) 的 SOAP 请求消息?我正在使用 Eclipse。
我想看看它包含哪些字段并按照这个结构构建一个 SOAP 消息。
如何打印发送到 Web 服务 (CXF2) 的 SOAP 请求消息?我正在使用 Eclipse。
我想看看它包含哪些字段并按照这个结构构建一个 SOAP 消息。
您只需添加一个 LoggingInterceptor :请参阅cxf 文档
Object implementor = new GreeterImpl();
EndpointImpl ep = (EndpointImpl) Endpoint.publish("http://localhost/service", implementor);
ep.getServer().getEndpoint().getInInterceptors().add(new LoggingInInterceptor());
ep.getServer().getEndpoint().getOutInterceptors().add(new LoggingOutInterceptor())
或者如果你使用Springframework
<bean id="quickFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
<property name="serviceClass" value="com.misc.PortType"/>
<property name="address" value="${service.url}"/>
<property name="inInterceptors">
<bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/>
</property>
<property name="outInterceptors">
<bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
</property>
</bean>