I have a workbench that creates a html-file with a table. In one field, there's a hyperlink. I write the file with a feature-writer and copy it to our webserver with a filecopy-writer.
To make the link clickable, I also use a StringPairReplacer, replacing this: < < > >
This works fine, as long as I run the workbench in FME-Desktop.
When I put the workbench on FME-Server and run it, the line with the link in the html looks like this:
<td><a href="https://www.xy.com">Text</a></td>
instead of
<td><a href="https://www.xy.com">Text</a></td>
in the browser, the address of the hyperlink is:
(value of filecopy_dest_filename)https://www.xy.com, so the user gets an error...
How can I get FME-Server to write the link correctly? It would be great, if the same syntax would be valid for desktop and FME-Server...
Thanks, Vera