A space to discuss FME Flow
Recently active
I have few handful of workspaces (consuming job submit and data download services) that are initially setup without any email notification. Is there a way to modify the published workspace in FMW server to setup with email notification upon job submit fail and donwload fail?When you publish a new service and setup email notifications while assigning the services, it works!! But i want to change the settings for existing workspaces.Thanks in advance!
Hi,I have created a longitudinal section as illustrated in the screenshot. The customer now would like me to change the direction of the stationing (running from right to left instead of running from left to right.)The basis for the creation is a 3D polyline. Is there any quick and smart way to accomplish it?
I'd like to publish a user account of an FME Server under my management, in order to allow some clients (Desktop users) to try FME Server quickly even without signing up either FME Server Trial or FME Cloud. However, I don't want to allow them to change password by themselves. Is it possible?
Currently, we noticed that the scheduled job in FME Server is consuming an extra FME license. This happens when the FME Script contains an FMEJobSubmitter. We can see that another fme.exe process is available in the Windows Task Manager aside from the other 4 allotted for the FME Engines. This should not happen.
We're currently testing FME Server 2018.0 - Build 18265 - win64, and upgrade every transformer in Workbench before publishing. Because of some Python functionality that require Python 3.4+ or newer, we set 3.6 in all workspaces under 'Translation parameters'. Everything works fine on desktop. On server, however, the Emailer fails with message: Python Exception <ModuleNotFoundError>: No module named '_socket' PythonFactory failed to load python symbol `Emailer.Emailer' Factory proxy not initialized Most other transformers work well on server with 3.6+ set in the workspace, but in order to get Emailer to work, we have to switch back to 2.7.
I have a lot of scripts that all write to point feature classes in a 10.4.1 SDE Database in SQL Server 2012. The source comes from one of 3 databases types, SQL 2012, SQL 2014, or Oracle 11G. They all are the same as far as errors go so either it's my SDE or FME itself.I even inspected everything I could and on a few I did get error while running and cleared up those small data issues, but they all produce the same error codes on crash dialog box I show at the bottom of this post when I close the Inspector app.I have tried to redo from scratch a few of my scripts but they ALL are crashing like I show below. I am using the latest version 2017.7.27.17725, I had 2017.7.27.17539 and it did the same exact thing and I thought upgrading would do the trick, but no.... I have redone all my readers and writers, fished through all my data and data types, redone queries, redone my writer feature classes in my SDE, and even filtered the coordinates to fit in the state because we are using UTMs
Hello,is there online service to convert data with FME. We need it just time to time? API interface would be appriciated.
Hi I have workbenches saved where I connected to Esri ArcGIS Server Feature Service however now they don't work and they used to. I suspect it is a proxy issue which is stopping me connecting but this is an existing link that no longer works for me. https://maps.npdc.govt.nz/arcgis/rest/services/viewer/utilities/MapServer. This is what I get in the log:he 'ARCGISFEATURES' reader was destroyed successfully'ARCGISFEATURES' reader was created successfullyCreating reader for format: Esri ArcGIS Server Feature ServiceTrying to find a PYTHON plugin for reader named `ARCGISFEATURES'Loaded Python module `arcgisonlinefeatures' from file `C:\\Program Files\\FME\\plugins/python27\\arcgisonlinefeatures\\__init__.pyc'Python Exception <TypeError>: unsupported operand type(s) for +: 'NoneType' and 'unicode'Could not create Python Reader `ARCGISFEATURES'A fatal error has occurred. Check the logfile above for detailsFailed to open the dataset &#
I am configuring a new installation of FME Server 2017 and have set up a reverse proxy for web access. I have been following this link which is based on FME Server 2015: https://knowledge.safe.com/articles/876/use-a-reverse-proxy-with-fme-server.htmlI am at the stage of configuring the email subscriber:Open the Web Admin Interface > Notifications > Subscriptions > Email_JobSuccess > Configure,In the Email Template, replace {urlPrefix} with {ResultPrexfix}.Under subscriptions I see:DataDownload_Email_JobSuccessJobSubmitter_Email_JobSuccessMigration_Email_JobSuccessI cannot locate {urlPrefix} in the data download subscription email template, there is however {downloadUrl} - do I need to change this?
HiI want to use FME Server to work with data from Database (DB1) and Fileshare (FS1) and transform them and place in Database (DB2) and Fileshare (FS2). All Source and Destination resources are located on different, separate machine. Do I need to run FME Server services (FME Serv App Server, FME Serv Core, FME Serv Database, FME Serv Engines) on such user account which has an access to all resources DB1, FS1, DB2 and FS2?
Hi There are 4 sevices on FME Server - FME Server Application Server, Core, Database, Engines. Is there any required order of services running, e. g. when the whole machine is restarting?
Hello!In FME Server 2017 when I create a publication with the directory watch protocol, there is a poll interval that let me choose how often I want to verify my path. If I put 1 (or any number) a hour or day or week, is there a way for me to know the exact time FME will proceed to this verification?If I put 5 a week, how does FME manage the verification? 7 days divided by 5?Would it be possible to create our own schedule? With CRON expression available, like in the workspace scheduler.I read this but nothing about the time : PollThanks a lot.
Hi,I'm new to the Docker world and trying to get an understanding of how things work. I've downloaded a couple of the Docker compose files for FME Server and have done some initial playing around with them using the Docker for Windows platform. From my observations to date, all data is lost if the Docker instance is shut down using the docker-compose down -v command, so an FME Server backup should be performed prior to shutdown.According to information given in this post, it is recommended to leave the Docker container running and let Docker itself manage bringing the FME Server instance up/down if the host machine is rebooted. This will preserve configuration changes, so all good so far, just don't shut down the container!What happens if the host machine crashes? I assume that Docker will not be able to shut down cleanly and all FME Server configuration information will be lost? To this end, I was hoping to set up a scheduled backup on FME Server but the compose file provi
In FME Desktop, the FME Script ends with Successful translation. But when running in FME Server, it stops after Total Features Written based on the log file. Does not close the geodatabase and does not show the translation was successful log. This is why the job is marked as failed in FME server. Reader and Writers are both ArcGIS SDE Geodatabase
Hello FMEs!!I am currently working on a modified docker-compose setup for FME 2017.1 that includes the Oracle Client libraries so that FME could access an Oracle Instance. I applied the various guides I found and basically came up with the following Dockerfile for the FME engine:FROM safesoftware/fmeserver-engine:2017.1.1# Installation of the Oracle Instant ClientADD OracleClient/oracle-instantclient*.rpm /tmp/ENV ORACLE_HOME=/usr/lib/oracle/11.2/client64RUN apt-get install -y libaio1RUN alien -i -c -v /tmp/oracle-instantclient*.rpm && \ rm -f /tmp/oracle-instantclient*.rpm && \ echo $ORACLE_HOME/lib > /etc/ld.so.conf.d/oracle-instantclient11.2.conf && \ ldconfigENV PATH=$PATH:$ORACLE_HOME/binENV LD_LIBRARY_PATH=$ORACLE_HOME/libENV TNS_ADMIN=$ORACLE_HOME/network/adminWORKDIR $LD_LIBRARY_PATHRUN ln -s libclntsh.so.11.1 libclntsh.soRUN mkdir $TNS_ADMIN -pCOPY OracleClient/*.ora $TNS_ADMIN/The modified build for the engine is used in the docker-compose
I've been googling away here at Knowledge Center for a couple of times on this simple matter. I have a bunch of scripts creating different outputs and I want to find/extract the data download URL so that I can e-mail this URL to the end users. Can anyone point me to where I can read more on this?Yours truly, Peter
I have two Netapp share locations mounted to an instance of FME Server on Linux. These locations are setup as FME Server Resources. Jobs can successfully write out to one of them but not the other. All permissions are EXACTLY the same on both Netapp shares. I am at a loss as to what could be going on here.
Hi,We upgraded from 2015 Server to 2017 on our test server. Desktop picks up the ArcMap 10.5.1 license. I can open ArcMap on the machine.But FME Server 2017 does not recognise the license. I test with a simple write to a local file geodatabase and I get the following below.Any ideas how to get Server 2017 to recognise the ArcMap license?Thanks,AnnetteWriter `GEODATABASE_FILE_1' of type `GEODATABASE_FILE' using group definition keyword `GEODATABASE_FILE_1_DEF' FME API version of module 'GEODATABASE_FILE' matches current internal version (3.8 20170315) The ArcObjects license 'Basic' is being selected from the Windows registry The Esri Product license used by this machine does not include licenses for the 'Basic' licensing level Unable to perform licensing related tasks. Please ensure that ArcGIS is correctly installed A fatal error has occurred. Check the logfile above for details A fatal error has occurred. Check the logfile above for details
See: https://nvd.nist.gov/vuln/detail/CVE-2016-10395We need to update the Safe License server which you currently only provide up to version 11.13.
I have installed both ArcGIS Desktop and ArcGIS Engine to the same machine where I work with FME Desktop. I want FME to only use my ArcGIS Engine due to licensing constraints -- how can I do this?
What is the optimal number of FME Engines? Should I use multiple machines?
Hi,I am trying to send multiple emails (different subjects, recipients, attachments etc) at the end of a process in FME Server. I am writing to a text writer and posting that data to a topic. While I have multiple features writing to the text writer, only one is used and thus only one email is sent. Am I missing something...why doesn't it send multiple emails if it receives multiple features.I realize I can use the workaround of using a featurewriter and then a FME ServerNotifier at the end of the process to get around this, but I am interested in why the initial workflow won't work.Cheers,Todd
With RHEL and CentOS beeing supported platforms it should work, because it is 100% compatible with RHEL.But has anyone tried this in real life or is there a statement from @FMELizard? ;)
Hi FME-Users and -Experts!I am creating a custom WebApplication for my co-workers to use some workbenches on their own with FME Server instead of asking me all the time. So far it works quite well. The site can load the parameters of a workbench automatically. I can even submit a job and retrieve the results as a download-link. But: Every now and then the upload-function stucks. On the server I can see that the specific folder is created (System/temp/upload/<repository-name>/<workspace-name>/<session>), but the content is empty. After some minutes the session-folder is deleted. Furthermore the parameters are not completey loaded. The default values are missing. When using the plain example from FME Server Playground (Upload File In Session) and just replace the server, token, repository and workspace it works. suspect my modified JavaScript has a bug, but I can not find it, nor do I know what to look for.Any suggestions?!FME Server 2016.1.0.1 - Build 16494 - win64 Web
I recently started receiving this error after things likely changed on the back end due to company restructuring. Has anyone received this error and been able to explain what might fix it, to the Exchange Admin people?