Skip to main content
Solved

FME Filtering By Attribute

  • June 12, 2017
  • 2 replies
  • 12 views

Forum|alt.badge.img

Hi,

I have a FME workbench that uses a HTTP caller to download 350 URLs. I then have a CSV file of 67 URLs that I need to download from this 350. I'm wondering is there a way to use a AttributeFilter or Tester etc. to only download these 67 and not the total number. I hope this makes sense. Thanks.

Best answer by takashi

Hi @dunuts, in your current workspace, where are the 350 URLs from? If the 350 URLs were being retrieved from an external table by a reader, I think you can use a CSV reader to read the 67 URLs instead of the 350 URLs and then pass the 67 URLs one by one to the HTTPCaller with the same manner as your current workspace.

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
  • June 12, 2017

Hi @dunuts, in your current workspace, where are the 350 URLs from? If the 350 URLs were being retrieved from an external table by a reader, I think you can use a CSV reader to read the 67 URLs instead of the 350 URLs and then pass the 67 URLs one by one to the HTTPCaller with the same manner as your current workspace.


Forum|alt.badge.img
  • Author
  • June 13, 2017

Hi @dunuts, in your current workspace, where are the 350 URLs from? If the 350 URLs were being retrieved from an external table by a reader, I think you can use a CSV reader to read the 67 URLs instead of the 350 URLs and then pass the 67 URLs one by one to the HTTPCaller with the same manner as your current workspace.

Thank you, that worked perfectly.