Skip to main content
Solved

Access a Secured FTP Site and Download the Dataset

  • September 6, 2013
  • 2 replies
  • 40 views

samisnunu
Contributor
Forum|alt.badge.img+12
Hi,

 

 

 

In a workspace, I will regularly update a source that is available as a zipped shape file from a secured ftp site with a username and password.

 

 

 

So I’m using the shape reader, and using a path like(ftp://<3.ftp/*_*.zip) in the FME shape file reader location, but FME returned the following error when running the workspace

 

 

 

ERROR |Shape Reader: No Shape Files found to process in directory,…

 

 

 

Obviously, I need to pass my logging credentials to download and read the zip file, so how can I pass the username and password in this case?

 

 

Sami

Best answer by takashi

Hi Sami,

 

 

Try this syntax:

 

ftp://<user>:<password>@<ftp server name>/<directory path>/<file name>

 

 

Takashi
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

takashi
Celebrity
  • Best Answer
  • September 6, 2013
Hi Sami,

 

 

Try this syntax:

 

ftp://<user>:<password>@<ftp server name>/<directory path>/<file name>

 

 

Takashi

samisnunu
Contributor
Forum|alt.badge.img+12
  • Author
  • Contributor
  • September 6, 2013
Thanks Takashi,

 

 

This works as you answered!