Hi,
We are using FtpAdapter for ftp the files from linux target server to windows server. In our deployment configuration we are using below FtpAdapter , here we are publishing the content from Teamsite to Linux target server and from there ftp the files to windows server. When we are trying to publish around 100 files through workflow the deployment is happening successfully to target server which is linux and from there ftp is not happening for all 100 files only some of the files are moving to windows server. Please let us know what may be the issue in the configuration file.
Please find below the deployment configuration file where we are using OOTB ftp configuration.
<?xml version="1.0" encoding="UTF-8"?>
<deploymentConfiguration>
<localNode host="localhost" />
<replicationFarmSet>
<replicationFarm name="cag_test" >
<nodeRef useNode="CNT_STG_UAT_LINUX" />
</replicationFarm>
<replicationFarm name="cag_prod" >
<nodeRef useNode="CNT_STG_UAT_FO_LINUX"/>
</replicationFarm>
</replicationFarmSet>
<definition name="cag_docs_test">
<source>
<sourceFilesystem area="$area^" filelist="$filelist^">
<pathSpecification>
<path name = "." />
</pathSpecification>
</sourceFilesystem>
</source>
<target useReplicationFarm="cag_test" >
<comparisonRules dateDifferent="yes" />
<!--<permissionRules file="0777" directory="0777" user="$user^" group="$group^" />-->
<permissionRules user="_iwod_user_" group="_iwod_group_" omask="133"/>
<transferRules doDeletes="yes"/>
<targetFilesystem area="$docTargetPath^" />
<odAdapterSet>
<odAdapter name="FtpAdapter"
class="com.interwoven.od.adapter.delivery.ftpadapter.IWftpAdapter"
parameter="/opt/interwoven/od-home/OpenDeployNG/conf/ODAdapter/cag_md_ftpconfig"
async="yes" />
</odAdapterSet>
</target>
</definition>
<definition name="cag_docs_prod">
<source>
<sourceFilesystem area="$area^" filelist="$filelist^">
<pathSpecification>
<path name = "." />
</pathSpecification>
</sourceFilesystem>
</source>
<target useReplicationFarm="cag_prod" >
<comparisonRules dateDifferent="yes" />
<!--<permissionRules file="0777" directory="0777" user="$user^" group="$group^" />-->
<permissionRules user="_iwod_user_" group="_iwod_group_" omask="133"/>
<transferRules doDeletes="yes"/>
<targetFilesystem area="$docTargetPath^" />
</target>
</definition>
<deployment transactional="no" >
<execDeploymentTask useDefinition="cag_docs_test" />
<execDeploymentTask useDefinition="cag_docs_prod" />
</deployment>
<logRules maxBytes="32Mb" level="normal"/>
</deploymentConfiguration>
Appreciate for any suggestions.