出于跟踪的原因,我需要显示肥皂网络服务的响应,并且我这样做是这样的:
jaxWsProxyFactoryBean.getOutInterceptors().add( new LoggingOutInterceptor());
它可以工作,但是顺便说一句,Web服务使用pdf文件的base64表示来回答。 像这样:
<response>
<name>aName</name>
<description>decription</description>
<file>...
loooooooooooong
...
</file>
</response>
我只想打印名称和描述标签,而对于文件标签,将使用一个简单的“混淆得太大”字符串。 有可能吗?