如何使用 wso2 vfs 传输从多个位置读取文件?

How ro read files from multiple locations using wso2 vfs transport?

This is my proxy service developed using wso2

服务..

    <parameter name="transport.vfs.FileURI">file:///home/user/test/in</parameter> <!--CHANGE-->
    <parameter name="transport.vfs.ContentType">text/xml</parameter>
    <parameter name="transport.vfs.FileNamePattern">.*\.xml</parameter>
    <parameter name="transport.PollInterval">15</parameter>
    <parameter name="transport.vfs.MoveAfterProcess">file:///home/user/test/original</parameter> <!--CHANGE-->
    <parameter name="transport.vfs.MoveAfterFailure">file:///home/user/test/original</parameter> <!--CHANGE-->
    <parameter name="transport.vfs.ActionAfterProcess">MOVE</parameter>
    <parameter name="transport.vfs.ActionAfterFailure">MOVE</parameter>
    <target>
        <endpoint>
            <address format="soap12" uri="http://localhost:9000/services/SimpleStockQuoteService"/>
        </endpoint>
        <outSequence>
            <property name="transport.vfs.ReplyFileName"
                      expression="fn:concat(fn:substring-after(get-property('MessageID'), 'urn:uuid:'), '.xml')"
                      scope="transport"/>
            <property action="set" name="OUT_ONLY" value="true"/>
            <send>
                <endpoint>
                    <address uri="vfs:file:///home/user/test/out"/> <!--CHANGE-->
                </endpoint>
            </send>
        </outSequence>
    </target>
    <publishWSDL uri="file:repository/samples/resources/proxy/sample_proxy_1.wsdl"/>
</proxy>

using the fileURI parameter I can read the files from a particular(file:///home/user/test/in) location and place them in another location(file:///home/user/test/out), now my requirement is, I want to read the files from multiple locations and place them in a single folder, how I do this using wso2 vfs?

我不认为一个 VFS 代理可以监听多个源位置 (transport.vfs.FileURI)。您可以让多个 VFS 代理侦听多个源位置(每个源位置一个 VFS 代理)并写入相同的目标位置。