Skip to main content
Solved

FME Server: FeatureWriter transformer role in data download service

  • April 18, 2018
  • 4 replies
  • 68 views

lazarlubomir
Contributor
Forum|alt.badge.img+10

Hello,

I have published workspace from FME Desktop to FME Server. Inside this workspace, there is one reader (DGN V7) and one writer (TXT). But finally, there are 2 writers, because I use even FeatureWriter transformer for exporting data to SQLite. Unfortunately, if I run WS through FME server job and data download service, I can see only TXT file in final ZIP file. So I have question - is there any possibility to compose exported file through FeatureWriter transformer into final ZIP file?

Thank You so much!

Lubo

Best answer by jlutherthomas

Hi @lazarlubomir

At the moment only traditional writers are included in the data download service but we are looking at adding feature writer support either in 18.1 or 2019 FME Server.

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.

4 replies

Forum|alt.badge.img+2
  • 364 replies
  • Best Answer
  • April 18, 2018

Hi @lazarlubomir

At the moment only traditional writers are included in the data download service but we are looking at adding feature writer support either in 18.1 or 2019 FME Server.


lazarlubomir
Contributor
Forum|alt.badge.img+10
  • Author
  • Contributor
  • 165 replies
  • April 18, 2018

Hi @lazarlubomir

At the moment only traditional writers are included in the data download service but we are looking at adding feature writer support either in 18.1 or 2019 FME Server.

@jlutherthomas Thank You, I can´t wait :-)

 


takashi
Celebrity
  • 7843 replies
  • April 18, 2018

Hi @lazarlubomir, a workaround I can think of is, write the destination dataset into a temporary file with the FeatureWriter, move it by a File Copy writer connected to the Summary port of the FeatureWriter, and include the File Copy writer in the download when you publish the workspace to the FME Server. The TempPathnameCreator can be used to create a temporary file path at run time.


lazarlubomir
Contributor
Forum|alt.badge.img+10
  • Author
  • Contributor
  • 165 replies
  • April 20, 2018

Hi @lazarlubomir, a workaround I can think of is, write the destination dataset into a temporary file with the FeatureWriter, move it by a File Copy writer connected to the Summary port of the FeatureWriter, and include the File Copy writer in the download when you publish the workspace to the FME Server. The TempPathnameCreator can be used to create a temporary file path at run time.

@takashi Yes, it a possible way way, how to export file via this transformer to data download. Thank You so much!