轴肥皂记录问题

时间:2018-08-20 12:13:07

标签: java web-services soap axis

我正在尝试打印Axis请求和响应日志(附加当前日期),以实现相同的目的,我创建了client-config.wsdd,但是在每个Web服务调用上都会生成一个新的日志文件,结果很大日志文件名。

<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
   <handler name="log" type="java:org.apache.axis.handlers.LogHandler">
      <parameter name="LogHandler.fileName" value="c:/logs/axis.log" />
   </handler>
   <globalConfiguration>
      <requestFlow>
         <handler type="log" />
      </requestFlow>
      <responseFlow>
         <handler type="log" />
      </responseFlow>
   </globalConfiguration>
   <transport name="http" pivot="java:org.apache.axis.transport.http.HTTPSender" />
</deployment>

任何建议将不胜感激。

0 个答案:

没有答案