mq fte和ant脚本

时间:2011-03-25 09:38:58

标签: ant websphere-mq-fte

我们可以在“presrc”或“postsrc”调用中使用globmapper吗? 如果可以,怎么用?

2 个答案:

答案 0 :(得分:1)

“presrc”或“postsrc”调用可以运行任何有效的Ant脚本,因此简短的回答是“是”。

希望有人会使用示例代码回复以提供更长的答案。 :-)

答案 1 :(得分:0)

参考样本:

<fte:filemove src="${source.agent}@${source.qmgr}" dst="${destination.agent}@${destination.qmgr}" rcproperty="copy.result">
<fte:presrc command="antfile.xml" type="antscript" retryCount="2" retryWait="30" successRC="0">
    <property name="source.filename" value="${trigger.filename}"/>
    <property name="source_path" value="${source.path}"/>
    <property name="source_agent" value="${source.agent}"/>
    <property name="source_qmgr" value="${source.qmgr}"/>
    <property name="source_archive_path" value="${archive.path}"/>
</fte:presrc>
<fte:filespec srcfilespec="${source.path}/${trigger.filename}" dstfile="${destination.path}/${trigger.filename}" overwrite="true"/>    
<fte:postdst command="antfile.xml" type="antscript" retryCount="2" retryWait="30" successRC="0">
    <property name="destination.filename" value="${trigger.filename}"/>
    <property name="destination_path" value="${destination.path}"/>
    <property name="destination_agent" value="${destination.agent}"/>
    <property name="destination_qmgr" value="${destination.qmgr}"/>
</fte:postdst>