我在 App Server 中有一个 XML,它正在获取 Inbox 、 Processed 和 Error 文件夹的路径,这些文件夹也存在于 E:\ 的同一个 App Server 中
<channel name="FundSERV XML File Load for Sales Commission" instance="default" user-id="UVSRTP" password="rtp@uvs" class="com.univeris.rtp.channel.MultiThreadedChannel">
<task-executor priority="LOW" threads="1" />
<process-trigger sleep-interval="60000" busy-retry="500" />
<heartbeat interval="60000" />
<stalled-check interval="30000" stall-duration="600000" enable="false" />
- <channel-schedules>
<channel-schedule class="com.univeris.rtp.schedules.ChannelScheduleDisabled" />
</channel-schedules>
- <task-manager class="com.univeris.rtpm.esgffs.task.EsgXmlFileLoadTaskManager" product-code="EWMS" entity-code="default">
- <file-types>
<file-type file-name-descr="WS[PT][a-zA-Z0-9]{7}\.(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d\d[a-zA-Z0-9]{4}\.[AZ](0[1-9]|[1-9]\d)" loader-class="com.univeris.rtpm.esgffs.loaders.v23.SalesCommissionsLoader" xml-parent-node="SalesComms" esg-version="23" fas-type="COM" load-complete-sets-only="true" />
</file-types>
- <file-load-paths>
<inbox-path>E:\fundserv-data\esg\SalesComms\inbox</inbox-path>
<processed-path>E:\fundserv-data\esg\SalesComms\processed</processed-path>
<error-path>E:\fundserv-data\esg\SalesComms\error</error-path>
</file-load-paths>
</task-manager>
</channel>
现在我想将这些路径更改如下:收件箱:已\\SV64050\DLRDEV1-Fundserv-data\esg\SalesComms\inbox
处理:\\SV64050\DLRDEV1-Fundserv-data\esg\SalesComms\processed
错误:\\SV64050\DLRDEV1-Fundserv-data\esg\SalesComms\error
我已经修改了下面显示的 XML,但文件不再从收件箱文件夹中移动,是否存在代码问题或其他问题
<inbox-path>\\SV64050\DLRDEV1-Fundserv-data\esg\SalesComms\inbox</inbox-path>
<processed-path>\\SV64050\DLRDEV1-Fundserv-data\esg\SalesComms\processed</processed-path>
<error-path>\\SV64050\DLRDEV1-Fundserv-data\esg\SalesComms\error</error-path>