FTPS Connector - Mule 4
home
This connector provides the same functionality as the standard FTP connector, but it adds secure connections over SSL.
To secure the connection, set a TLS context in the connection:
<ftp:config name="ftp">
<ftps:connection username="anonymous" password="password"
host="localhost" port="${ftpPort}"
workingDir="${workingDir}">
<tls:context>
<tls:trust-store path="path/to/keystore" password="mulepassword" />
</tls:context>
</ftps:connection>
</ftp:config>For more on SSL configuration in Mule, see About TLS Configuration.For more on other functionality provided by this connector, see FTP Connector Documentation Reference.To use the FTPS connector, add it to your Mule app using Anypoint Studio, or you can add the following dependency in your pom.xml file:<dependency>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>mule-ftps-connector</artifactId>
<version>1.3.0</version> <!-- or newer -->
<classifier>mule-plugin</classifier>
</dependency>Additional ReferencesFTPS Connector GuideFTPS Connector ReferenceFTPS Connector Release Notes