0

我需要将响应消息写入“response.xml”文件。并且响应应该附加到这个文件中,我将参数“Append”设置为true,但是没有用,每次都被完全覆盖。任何人都可以帮助我吗?谢谢和最好的问候。

<proxy xmlns="http://ws.apache.org/ns/synapse" name="EndpointTest" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
   <target>
      <inSequence>
         <log level="full" />
      </inSequence>
      <outSequence>
         <log level="full" />
         <send>
            <endpoint>
               <address uri="vfs:file:///usr/local/wso2esb-4.0.3/Log" format="pox" />
               <property name="OUT_ONLY" value="true" />
               <property name="transport.vfs.Append" value="true" />
               <property name="transport.vfs.ReplyFileName" value="response.xml" />
            </endpoint>
         </send>
         <send />
      </outSequence>
      <endpoint>
         <address uri="http://172.21.13.151:18989/aaadc/services/receiveMsg" format="pox" />
      </endpoint>
   </target>
</proxy>
4

1 回答 1

1

从服务级别删除 append= true 参数并与端点 url 一起使用,例如:

vfs:file:///usr/local/wso2esb-4.0.3/Log?transport.vfs.Append=true 
于 2012-08-16T11:51:43.827 回答