SlideShare une entreprise Scribd logo
Web Connections & Services
in FME: Tips & Tricks to
Setting Up and Harnessing
their Full Potential
Jen
Luther Thomas
Technical Support Team
Lead, FME Flow Hosted
Matt
Meeboer
Technical Support Specialist,
FME Flow
Jenna
Kim
Technical Support Specialist,
FME Form
Agenda
1 Introduction
2 Safe & FME
3 Connecting to a New Web Service: What You Need
4 Building the Web Service Definition
5 Using the HTTPCaller: Making API Calls
6 Real World Examples
7 Sharing Web Connections
8 Troubleshooting Your Web Service
9 Conclusion
10 Resources, Next Steps, Q&A
Welcome to Livestorm.
A few ways to engage with us during the webinar:
Audio issues? Click this for 4 simple
troubleshooting steps.
How to download slides
1. Hover over the
slide deck in the
webinar room
2. Click this button
Poll: What is your
experience with web
connections and
services?
1
Introduction
Gain a comprehensive
understanding of web connections
using FME and enhance your
technical capabilities.
Introduction
More of Our Data is Living in Web Applications
Common frustrations people face with this topic are:
● How do I integrate with my Web Application?
● FME doesn’t have a connection template for my Web Application!
● I setup a connection, but it doesn’t work.
● Ok, I’m connected, but the connection is unreliable :-(
We’re here to help!
Introduction
● Reusable
● Shareable
● Deployable (especially paired with
Deployment Parameters)
● Exchangeable
● ArcGIS, SharePoint, Google, Amazon,
Trimble and much more
Importance of Web
Connections in FME
Introduction
2
Safe & FME
FME Form
(was FME Desktop)
FME Flow
(was FME Server)
FME Flow Hosted
(was FME Cloud)
FME Enterprise Integration Platform
Safe & FME
Number
of
supported
formats
in
FME
1995 2000 2005 2010 2015 2020 2023…
10
100
300
500
GIS
CAD
Database
XML
Raster
3D
BIM
Web
Point
Cloud
Cloud
Big
Data
IOT
Gaming
BI
Indoor
Mapping
AR/VR
Generative
AI
Cloud
Native
Tabular
Safe & FME
3
Connecting to a
New Web Service:
WhatYou Need to
Know
Web Connections - What are they?
● A safe and convenient way to store and reuse your
connection parameters
● A secure, named container to use in your workflows
● Use with all supported authentication protocols
● Register with Web Services from FME Form
● Different types: OAuth 2.0, Token, HTTP
Authentication
Connecting to a New Web Service: What You Need to Know
Two Parts
The Web Service
Connecting to a New Web Service: What You Need to Know
The Web Connection
One service, many connections
Key Components of a Web Service
● Token: An alphanumeric string used to authenticate and identify an application to an
API. Takes the place of a username + password.
● REST API: a set of defined constraints that allows the software to communicate with a
defined protocol, like HTTP. In web services, REST APIs serve tokens.
● JSON: Javascript Object Notation. The format used to pass data back and forth to a web
service’s REST APIs
Connecting to a New Web Service: What You Need to Know
More components based on type of web service
Why API Authentication Matters
● Authentication: Verifies your identity before you
can make a request.
● Authorization: Verifies that you are allowed to make
that request.
Authentication protects an API’s data, resources and
functionality.
Connecting to a New Web Service: What You Need to Know
Connecting to a New Web Service: What You Need to Know
401 error: no token provided in request or bad token provided
403 error: forbidden. Authenticated ok, but the token is not authorization
to access the resource requested
Authenticating with FME
HTTP Authentication Protocols
● Basic
● Digest
● Kerberos
● NTLM
Even More Ways to Authenticate….
● API Keys/Application Tokens
● User Tokens
● OAuth 2.0
Connecting to a New Web Service: What You Need to Know
Connecting to a New Web Service: What You Need to Know
Authentication Token Expiry
● For security, authentication tokens almost always
expire after time
● Duration before expiry determined by web
application providing token, not FME.
● When using token to authenticate, FME will track
when current one expires, get new one if needed
Connecting to a New Web Service: What You Need to Know
ok nice very nice!
Laying the Groundwork
● Can you access web application you are building the web service for from FME Form or
Flow machine?
● Have you reviewed web application vendor’s API Documentation?
● Review FME Form doc for reader or writer you are going to use web connection for
● Review articles in FME Community for step-by-step instructions on creating web services
for popular web applications
Connecting to a New Web Service: What You Need to Know
4
Building the
Web Service
Definition
Token Web Services
● One of common web service types (other: OAuth 2.0)
● Simpler than OAuth 2.0
● Request a token from web application’s REST API in format
specified by provider
● Token expiry time is received from the REST API
● When token expires, same process to get another (not the case
with OAuth 2.0)
Building the Web Service Definition
Token Web Service Key Components
Token Generation REST API:
tells FME how to make the request to get a
token
Access Token Response:
tells FME the token and expiry key names it
should expect back
API Call Parameters:
tells FME how to use the token key to make
calls to the web application
Building the Web Service Definition
Token Web
Service
Demo
ParameterizeYour Web Services
Building the Web Service Definition
5
Using the
HTTPCaller:
Making API Calls
Introduction to the HTTPCaller and its role in web
service integration
In 2018 on the FME Community (Ideas) a user requested:
“Similar to how the Slack integration works, it
would be nice to automate the push notification of
x,y,and z to a channel within Microsoft Teams.”
Using the HTTPCaller: Making API Calls
Step-by-step guide for utilizing the HTTPCaller in
FME to make API calls
● Does the application that you want to interact with have an API?
● Find the documentation for the request you need to make
● How does that service authenticate?
● Start building!
Using the HTTPCaller: Making API Calls
OAuth 2.0 Web Service Key Components
Client ID:
is the public identifier for your application
Client Secret:
acts as a password between the client (FME) and the
service
Redirect URI:
tells the service where to send sensitive information
(tokens)
Authorization URL:
where FME will request an authorization code from
Building the Web Service Definition
How to configure the Microsoft Teams web service
OAuth 2.0 Web Service Key Components
Client ID
Client Secret
generate a secret for FME Flow
Redirect URI
choose desktop app (Form) or web app
(Flow)
Tenancy
for the authorization url
API permissions
control what FME is authorized to access
Building the Web Service Definition
Build and Test: Web Service Permissions
To make requests to the Microsoft Graph API the user will need to be authorized to access
specific resources.
Using the HTTPCaller: Making API Calls
The permissions that are needed are
listed in the API documentation.
To be authorized to send a message
the ChannelMessage.Send
permission is required.
Build and Test: Web Service Permissions
Using the HTTPCaller: Making API Calls
Add all required permissions to the
Azure app registration. These can be
found in the Microsoft
documentation.
To POST a message multiple HTTP
requests are required to obtain team
id, channel id and send the chat
message.
POST /teams/{team-id}/channels/{channel-id}/messages
Build and Test: HTTPCallers
Using the HTTPCaller: Making API Calls
Put it all together
Every HTTPCaller uses the same Microsoft Teams web
service, configured as a web connection user parameter
Share your work!
Make your process easy to use (custom transformer)
Template your web service definition
Share it on hub.safe.com
6
Real World
Examples
Benefits of connecting to Web Services
● Web services enable remote data access, interoperability, and modularity for cost-efficient
and scalable global solutions.
● Standardized protocols ensure platform-independent communication; modular services
offer easy maintenance, real-time updates, and agile pivoting.
● Integration of diverse web services provides security, innovation, and specialized
functionality for powerful, adaptable, feature-rich apps.
Real World Examples
Popular Web Services in FME
Real World Examples
+ Endless
possibilities
Demo
7
Sharing Web
Connections
Sharing Web Connections within your
Organization
If you have only FME Form:
● Export/Import web service .xml definition in FME Form
● Sharing the FME Form connection storage file and the public key file on a network drive
Sharing Web Connections
Making Database and
Web Connections
Public
Publish to FME Flow
● Share web connections with other FME Flow users
● Create Deployment Parameters (Requires FME Flow 2023+)
Sharing Web Connections
You will need to share the connection on
FME Flow for others to use it.
Sharing Web Connections
● The underlying web service is uploaded with the web connection
Sharing Web Connections
● OAuth 2.0 Web Service?
● Don’t forget to configure on FME Flow!
Deployment Parameters:Your Best Option
Sharing Web Connections
very nice!
Deployment Parameters
Connecting to a New Web Service: What You Need to Know
One parameter, many values
(depends on connected FME
Flow Instance)
FME Flow Test Instance
FME Flow Production Instance
8
Troubleshooting
Your Web Service
Generic Troubleshooting Tips
● Have you verified the connection is set up correctly?
● If you’re seeing an error message, have you searched the internet for that error?
● Use web monitoring tools
● Have you looked in log files?
Testing and Troubleshooting Your Web Service
OAuth 2.0 Connection Errors
● OAuth Failed
● Invalid Redirect URI
● Check your web service settings
○ Client id, secret and redirect url must all match
values from the oauth app in the web application!
Testing and Troubleshooting Your Web Service
Testing and Troubleshooting Your Web Service
More Errors
● HTTP Errors (i.e., 401, 403, 404)
● Timeouts
○ FME can’t reach the web application URL
● HTTPS or SSL Certificate Errors (FME Flow)
○ May need to import the ssl certificates to establish
trust
● Can you get a token outside of FME using a tool like
Postman or cURL?
Testing and Troubleshooting Your Web Service
Troubleshooting
ArcGIS Online Web
Connections
Troubleshooting
SharePoint Web
Connections
Connection Stops Working on FME Flow
● Works for a while, then you start receiving invalid token errors
● Tokens are published with the web service, but they expire
● Confirm your web service is configured correctly on FME Flow
○ Authorize the web connection
● Use different web connections for different FME Flow instances
Testing and Troubleshooting Your Web Service
9
Conclusion
Summary
● Web connections let you reuse and share
without hard-coding web application
credentials
● A web connection has underlying web
service configuration
● Web services use tokens to authenticate
● Key web service types: token and OAuth
● FME provides web service templates for
dozens of popular web applications
● Define your own web service templates
using web application vendor’s
documentation
Conclusion
10
Resources
Resources
● Web Connections and FME
● Making Database and Web Connections
Public
● Deployment Parameters
● FME Flow Troubleshooting: Web
Connections
● Check out the FME Community for many
application-specific web connection
articles!
Get our Ebook
Spatial Data for the
Enterprise
fme.ly/gzc
Guided learning experiences
at your fingertips
community.safe.com
/s/academy
FME Academy
Webinars
Upcoming & on-demand
webinars
safe.com/webinars
10
Next Steps
We’d love to help you get
started.
Get in touch with us at
info@safe.com
Experience the FME Accelerator
Contact Us
Unlock the power of your
data in only 90 minutes
Register for free at
fme.safe.com/accelerator
Next Steps
Our largest
FME user
conference
yet.
Sept 5-7 | 100+ sessions
co-hosted by Safe Software & con terra
Next Steps
ClaimYour Community Badge
● Get community badges for watching
webinars!
● fme.ly/WebinarBadge
● Today’s code: MGFLW
Join the Community today!
Next Steps
11
Q&A
ThankYou
Recap of Next Steps
1 Join the FME Community
2 Contact us
3 Experience the FME Accelerator
Please fill out our
webinar survey

Contenu connexe

Tendances

End to-End Monitoring for ITSM and DevOps
End to-End Monitoring for ITSM and DevOpsEnd to-End Monitoring for ITSM and DevOps
End to-End Monitoring for ITSM and DevOps
eG Innovations
 
Leveraging Data Integration for Strategic GIS Governance
Leveraging Data Integration for Strategic GIS GovernanceLeveraging Data Integration for Strategic GIS Governance
Leveraging Data Integration for Strategic GIS Governance
Safe Software
 
Fundamental MLOps
Fundamental MLOpsFundamental MLOps
Fundamental MLOps
Saripudin Gon
 
Creating Custom Solutions with FME and Python
Creating Custom Solutions with FME and PythonCreating Custom Solutions with FME and Python
Creating Custom Solutions with FME and Python
Safe Software
 
Talend Big Data Capabilities Overview
Talend Big Data Capabilities OverviewTalend Big Data Capabilities Overview
Talend Big Data Capabilities Overview
Rajan Kanitkar
 
Odoo implementation
Odoo implementationOdoo implementation
Odoo implementation
Odoo Thaidev
 
6 Reasons Why APIs Are Reshaping Your Business
6 Reasons Why APIs Are Reshaping Your Business6 Reasons Why APIs Are Reshaping Your Business
6 Reasons Why APIs Are Reshaping Your Business
Fabernovel
 
Oracle Service Cloud overview
Oracle Service Cloud overviewOracle Service Cloud overview
Oracle Service Cloud overview
Bang Ta
 
Running a University with Odoo
Running a University with OdooRunning a University with Odoo
Running a University with Odoo
Odoo
 
Devops Intro - Devops for Unicorns & DevOps for Horses
Devops Intro - Devops for Unicorns & DevOps for HorsesDevops Intro - Devops for Unicorns & DevOps for Horses
Devops Intro - Devops for Unicorns & DevOps for Horses
BoonNam Goh
 
Fusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data IntegratorFusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data Integrator
Mark Rabne
 
Configuring Route and Rule in Odoo 15
Configuring Route and Rule in Odoo 15Configuring Route and Rule in Odoo 15
Configuring Route and Rule in Odoo 15
Celine George
 
Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...
Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...
Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...
Databricks
 
webMethods Integration Server Introduction
webMethods Integration Server Introduction webMethods Integration Server Introduction
webMethods Integration Server Introduction
Arul ChristhuRaj Alphonse
 
Workshop on Google Cloud Data Platform
Workshop on Google Cloud Data PlatformWorkshop on Google Cloud Data Platform
Workshop on Google Cloud Data Platform
GoDataDriven
 
What is MLOps
What is MLOpsWhat is MLOps
What is MLOps
Henrik Skogström
 
Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...
Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...
Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...
Edureka!
 
Ebs vs fusion
Ebs vs fusionEbs vs fusion
Ebs vs fusion
mohamed mahmoud
 
[V14] Odoo functional training Pinakin Nayi
[V14] Odoo functional training Pinakin Nayi[V14] Odoo functional training Pinakin Nayi
[V14] Odoo functional training Pinakin Nayi
Pinakin Nayi
 
RDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM ContainersRDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM Containers
Safe Software
 

Tendances (20)

End to-End Monitoring for ITSM and DevOps
End to-End Monitoring for ITSM and DevOpsEnd to-End Monitoring for ITSM and DevOps
End to-End Monitoring for ITSM and DevOps
 
Leveraging Data Integration for Strategic GIS Governance
Leveraging Data Integration for Strategic GIS GovernanceLeveraging Data Integration for Strategic GIS Governance
Leveraging Data Integration for Strategic GIS Governance
 
Fundamental MLOps
Fundamental MLOpsFundamental MLOps
Fundamental MLOps
 
Creating Custom Solutions with FME and Python
Creating Custom Solutions with FME and PythonCreating Custom Solutions with FME and Python
Creating Custom Solutions with FME and Python
 
Talend Big Data Capabilities Overview
Talend Big Data Capabilities OverviewTalend Big Data Capabilities Overview
Talend Big Data Capabilities Overview
 
Odoo implementation
Odoo implementationOdoo implementation
Odoo implementation
 
6 Reasons Why APIs Are Reshaping Your Business
6 Reasons Why APIs Are Reshaping Your Business6 Reasons Why APIs Are Reshaping Your Business
6 Reasons Why APIs Are Reshaping Your Business
 
Oracle Service Cloud overview
Oracle Service Cloud overviewOracle Service Cloud overview
Oracle Service Cloud overview
 
Running a University with Odoo
Running a University with OdooRunning a University with Odoo
Running a University with Odoo
 
Devops Intro - Devops for Unicorns & DevOps for Horses
Devops Intro - Devops for Unicorns & DevOps for HorsesDevops Intro - Devops for Unicorns & DevOps for Horses
Devops Intro - Devops for Unicorns & DevOps for Horses
 
Fusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data IntegratorFusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data Integrator
 
Configuring Route and Rule in Odoo 15
Configuring Route and Rule in Odoo 15Configuring Route and Rule in Odoo 15
Configuring Route and Rule in Odoo 15
 
Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...
Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...
Zipline: Airbnb’s Machine Learning Data Management Platform with Nikhil Simha...
 
webMethods Integration Server Introduction
webMethods Integration Server Introduction webMethods Integration Server Introduction
webMethods Integration Server Introduction
 
Workshop on Google Cloud Data Platform
Workshop on Google Cloud Data PlatformWorkshop on Google Cloud Data Platform
Workshop on Google Cloud Data Platform
 
What is MLOps
What is MLOpsWhat is MLOps
What is MLOps
 
Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...
Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...
Talend Data Integration Tutorial | Talend Tutorial For Beginners | Talend Onl...
 
Ebs vs fusion
Ebs vs fusionEbs vs fusion
Ebs vs fusion
 
[V14] Odoo functional training Pinakin Nayi
[V14] Odoo functional training Pinakin Nayi[V14] Odoo functional training Pinakin Nayi
[V14] Odoo functional training Pinakin Nayi
 
RDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM ContainersRDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM Containers
 

Similaire à Web Connections & Services in FME: Tips & Tricks to Setting Up and Harnessing their Full Potential

How to Connect to Any REST API (Without Writing Any Code)
How to Connect to Any REST API (Without Writing Any Code)How to Connect to Any REST API (Without Writing Any Code)
How to Connect to Any REST API (Without Writing Any Code)
Safe Software
 
OAuth Tokens
OAuth TokensOAuth Tokens
Overview on ring central errors
Overview on ring central errorsOverview on ring central errors
Overview on ring central errors
Anirban Sen Chowdhary
 
Party + REST = Win
Party + REST = WinParty + REST = Win
Party + REST = Win
Jimmy Sieben
 
10135 a 04
10135 a 0410135 a 04
10135 a 04
Bố Su
 
Rest WebAPI with OData
Rest WebAPI with ODataRest WebAPI with OData
Rest WebAPI with OData
Mahek Merchant
 
What are restful web services?
What are restful web services?What are restful web services?
What are restful web services?
Aparna Sharma
 
Mule 4 connecting ring central
Mule 4 connecting ring centralMule 4 connecting ring central
Mule 4 connecting ring central
Anirban Sen Chowdhary
 
OAuth2 - Introduction
OAuth2 - IntroductionOAuth2 - Introduction
OAuth2 - Introduction
Knoldus Inc.
 
Api security
Api security Api security
Api security
teodorcotruta
 
.NET Core, ASP.NET Core Course, Session 19
 .NET Core, ASP.NET Core Course, Session 19 .NET Core, ASP.NET Core Course, Session 19
.NET Core, ASP.NET Core Course, Session 19
aminmesbahi
 
Web Servers (ppt)
Web Servers (ppt)Web Servers (ppt)
Web Servers (ppt)
webhostingguy
 
How to Create Video Application for an EdTech Platform
How to Create Video Application for an EdTech PlatformHow to Create Video Application for an EdTech Platform
How to Create Video Application for an EdTech Platform
Enablex1
 
Secure Coding: SSL, SOAP, and REST
Secure Coding: SSL, SOAP, and RESTSecure Coding: SSL, SOAP, and REST
Secure Coding: SSL, SOAP, and REST
Salesforce Developers
 
Floating on a (Microsoft) Cloud: Data Integration with Microsoft Cloud
Floating on a (Microsoft) Cloud: Data Integration with Microsoft CloudFloating on a (Microsoft) Cloud: Data Integration with Microsoft Cloud
Floating on a (Microsoft) Cloud: Data Integration with Microsoft Cloud
Safe Software
 
How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?
AmeliaWong21
 
Wt5 deploying and managing ap is
Wt5 deploying and managing ap isWt5 deploying and managing ap is
Wt5 deploying and managing ap is
Akihiro Iwaya
 
The Top Tips You need to Learn about Data in your Mobile App
The Top Tips You need to Learn about Data in your Mobile AppThe Top Tips You need to Learn about Data in your Mobile App
The Top Tips You need to Learn about Data in your Mobile App
Woodruff Solutions LLC
 
RESTful Day 5
RESTful Day 5RESTful Day 5
RESTful Day 5
Akhil Mittal
 
Oracle RightNow Customer Portal Migration
Oracle RightNow Customer Portal MigrationOracle RightNow Customer Portal Migration
Oracle RightNow Customer Portal Migration
CRMIT
 

Similaire à Web Connections & Services in FME: Tips & Tricks to Setting Up and Harnessing their Full Potential (20)

How to Connect to Any REST API (Without Writing Any Code)
How to Connect to Any REST API (Without Writing Any Code)How to Connect to Any REST API (Without Writing Any Code)
How to Connect to Any REST API (Without Writing Any Code)
 
OAuth Tokens
OAuth TokensOAuth Tokens
OAuth Tokens
 
Overview on ring central errors
Overview on ring central errorsOverview on ring central errors
Overview on ring central errors
 
Party + REST = Win
Party + REST = WinParty + REST = Win
Party + REST = Win
 
10135 a 04
10135 a 0410135 a 04
10135 a 04
 
Rest WebAPI with OData
Rest WebAPI with ODataRest WebAPI with OData
Rest WebAPI with OData
 
What are restful web services?
What are restful web services?What are restful web services?
What are restful web services?
 
Mule 4 connecting ring central
Mule 4 connecting ring centralMule 4 connecting ring central
Mule 4 connecting ring central
 
OAuth2 - Introduction
OAuth2 - IntroductionOAuth2 - Introduction
OAuth2 - Introduction
 
Api security
Api security Api security
Api security
 
.NET Core, ASP.NET Core Course, Session 19
 .NET Core, ASP.NET Core Course, Session 19 .NET Core, ASP.NET Core Course, Session 19
.NET Core, ASP.NET Core Course, Session 19
 
Web Servers (ppt)
Web Servers (ppt)Web Servers (ppt)
Web Servers (ppt)
 
How to Create Video Application for an EdTech Platform
How to Create Video Application for an EdTech PlatformHow to Create Video Application for an EdTech Platform
How to Create Video Application for an EdTech Platform
 
Secure Coding: SSL, SOAP, and REST
Secure Coding: SSL, SOAP, and RESTSecure Coding: SSL, SOAP, and REST
Secure Coding: SSL, SOAP, and REST
 
Floating on a (Microsoft) Cloud: Data Integration with Microsoft Cloud
Floating on a (Microsoft) Cloud: Data Integration with Microsoft CloudFloating on a (Microsoft) Cloud: Data Integration with Microsoft Cloud
Floating on a (Microsoft) Cloud: Data Integration with Microsoft Cloud
 
How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?How to use Informatica Power Center as a RESTful Web Service Client?
How to use Informatica Power Center as a RESTful Web Service Client?
 
Wt5 deploying and managing ap is
Wt5 deploying and managing ap isWt5 deploying and managing ap is
Wt5 deploying and managing ap is
 
The Top Tips You need to Learn about Data in your Mobile App
The Top Tips You need to Learn about Data in your Mobile AppThe Top Tips You need to Learn about Data in your Mobile App
The Top Tips You need to Learn about Data in your Mobile App
 
RESTful Day 5
RESTful Day 5RESTful Day 5
RESTful Day 5
 
Oracle RightNow Customer Portal Migration
Oracle RightNow Customer Portal MigrationOracle RightNow Customer Portal Migration
Oracle RightNow Customer Portal Migration
 

Plus de Safe Software

Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
Safe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
Safe Software
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action:  Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action:  Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
Safe Software
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Safe Software
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
Safe Software
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data Ecosystem
Safe Software
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Safe Software
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
Safe Software
 
Mastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISMastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GIS
Safe Software
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriGeospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Safe Software
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Safe Software
 
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologyBreaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Safe Software
 
Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...
Safe Software
 

Plus de Safe Software (20)

Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action:  Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action:  Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data Ecosystem
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Mastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISMastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GIS
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriGeospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & Esri
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
 
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologyBreaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI Technology
 
Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...
 

Dernier

AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial IntelligenceAI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
IndexBug
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Speck&Tech
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
Federico Razzoli
 

Dernier (20)

AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial IntelligenceAI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
 

Web Connections & Services in FME: Tips & Tricks to Setting Up and Harnessing their Full Potential

  • 1. Web Connections & Services in FME: Tips & Tricks to Setting Up and Harnessing their Full Potential
  • 2. Jen Luther Thomas Technical Support Team Lead, FME Flow Hosted Matt Meeboer Technical Support Specialist, FME Flow Jenna Kim Technical Support Specialist, FME Form
  • 3. Agenda 1 Introduction 2 Safe & FME 3 Connecting to a New Web Service: What You Need 4 Building the Web Service Definition 5 Using the HTTPCaller: Making API Calls 6 Real World Examples 7 Sharing Web Connections 8 Troubleshooting Your Web Service 9 Conclusion 10 Resources, Next Steps, Q&A
  • 4. Welcome to Livestorm. A few ways to engage with us during the webinar: Audio issues? Click this for 4 simple troubleshooting steps.
  • 5. How to download slides 1. Hover over the slide deck in the webinar room 2. Click this button
  • 6. Poll: What is your experience with web connections and services?
  • 8. Gain a comprehensive understanding of web connections using FME and enhance your technical capabilities. Introduction
  • 9. More of Our Data is Living in Web Applications Common frustrations people face with this topic are: ● How do I integrate with my Web Application? ● FME doesn’t have a connection template for my Web Application! ● I setup a connection, but it doesn’t work. ● Ok, I’m connected, but the connection is unreliable :-( We’re here to help! Introduction
  • 10. ● Reusable ● Shareable ● Deployable (especially paired with Deployment Parameters) ● Exchangeable ● ArcGIS, SharePoint, Google, Amazon, Trimble and much more Importance of Web Connections in FME Introduction
  • 12. FME Form (was FME Desktop) FME Flow (was FME Server) FME Flow Hosted (was FME Cloud) FME Enterprise Integration Platform Safe & FME
  • 13. Number of supported formats in FME 1995 2000 2005 2010 2015 2020 2023… 10 100 300 500 GIS CAD Database XML Raster 3D BIM Web Point Cloud Cloud Big Data IOT Gaming BI Indoor Mapping AR/VR Generative AI Cloud Native Tabular Safe & FME
  • 14. 3 Connecting to a New Web Service: WhatYou Need to Know
  • 15. Web Connections - What are they? ● A safe and convenient way to store and reuse your connection parameters ● A secure, named container to use in your workflows ● Use with all supported authentication protocols ● Register with Web Services from FME Form ● Different types: OAuth 2.0, Token, HTTP Authentication Connecting to a New Web Service: What You Need to Know
  • 16. Two Parts The Web Service Connecting to a New Web Service: What You Need to Know The Web Connection One service, many connections
  • 17. Key Components of a Web Service ● Token: An alphanumeric string used to authenticate and identify an application to an API. Takes the place of a username + password. ● REST API: a set of defined constraints that allows the software to communicate with a defined protocol, like HTTP. In web services, REST APIs serve tokens. ● JSON: Javascript Object Notation. The format used to pass data back and forth to a web service’s REST APIs Connecting to a New Web Service: What You Need to Know More components based on type of web service
  • 18. Why API Authentication Matters ● Authentication: Verifies your identity before you can make a request. ● Authorization: Verifies that you are allowed to make that request. Authentication protects an API’s data, resources and functionality. Connecting to a New Web Service: What You Need to Know
  • 19. Connecting to a New Web Service: What You Need to Know 401 error: no token provided in request or bad token provided 403 error: forbidden. Authenticated ok, but the token is not authorization to access the resource requested
  • 20. Authenticating with FME HTTP Authentication Protocols ● Basic ● Digest ● Kerberos ● NTLM Even More Ways to Authenticate…. ● API Keys/Application Tokens ● User Tokens ● OAuth 2.0 Connecting to a New Web Service: What You Need to Know
  • 21. Connecting to a New Web Service: What You Need to Know Authentication Token Expiry ● For security, authentication tokens almost always expire after time ● Duration before expiry determined by web application providing token, not FME. ● When using token to authenticate, FME will track when current one expires, get new one if needed
  • 22. Connecting to a New Web Service: What You Need to Know ok nice very nice!
  • 23. Laying the Groundwork ● Can you access web application you are building the web service for from FME Form or Flow machine? ● Have you reviewed web application vendor’s API Documentation? ● Review FME Form doc for reader or writer you are going to use web connection for ● Review articles in FME Community for step-by-step instructions on creating web services for popular web applications Connecting to a New Web Service: What You Need to Know
  • 25. Token Web Services ● One of common web service types (other: OAuth 2.0) ● Simpler than OAuth 2.0 ● Request a token from web application’s REST API in format specified by provider ● Token expiry time is received from the REST API ● When token expires, same process to get another (not the case with OAuth 2.0) Building the Web Service Definition
  • 26. Token Web Service Key Components Token Generation REST API: tells FME how to make the request to get a token Access Token Response: tells FME the token and expiry key names it should expect back API Call Parameters: tells FME how to use the token key to make calls to the web application Building the Web Service Definition
  • 28. Demo
  • 29. ParameterizeYour Web Services Building the Web Service Definition
  • 31. Introduction to the HTTPCaller and its role in web service integration In 2018 on the FME Community (Ideas) a user requested: “Similar to how the Slack integration works, it would be nice to automate the push notification of x,y,and z to a channel within Microsoft Teams.” Using the HTTPCaller: Making API Calls
  • 32. Step-by-step guide for utilizing the HTTPCaller in FME to make API calls ● Does the application that you want to interact with have an API? ● Find the documentation for the request you need to make ● How does that service authenticate? ● Start building! Using the HTTPCaller: Making API Calls
  • 33. OAuth 2.0 Web Service Key Components Client ID: is the public identifier for your application Client Secret: acts as a password between the client (FME) and the service Redirect URI: tells the service where to send sensitive information (tokens) Authorization URL: where FME will request an authorization code from Building the Web Service Definition How to configure the Microsoft Teams web service
  • 34. OAuth 2.0 Web Service Key Components Client ID Client Secret generate a secret for FME Flow Redirect URI choose desktop app (Form) or web app (Flow) Tenancy for the authorization url API permissions control what FME is authorized to access Building the Web Service Definition
  • 35. Build and Test: Web Service Permissions To make requests to the Microsoft Graph API the user will need to be authorized to access specific resources. Using the HTTPCaller: Making API Calls The permissions that are needed are listed in the API documentation. To be authorized to send a message the ChannelMessage.Send permission is required.
  • 36. Build and Test: Web Service Permissions Using the HTTPCaller: Making API Calls Add all required permissions to the Azure app registration. These can be found in the Microsoft documentation. To POST a message multiple HTTP requests are required to obtain team id, channel id and send the chat message. POST /teams/{team-id}/channels/{channel-id}/messages
  • 37. Build and Test: HTTPCallers Using the HTTPCaller: Making API Calls
  • 38. Put it all together Every HTTPCaller uses the same Microsoft Teams web service, configured as a web connection user parameter
  • 39. Share your work! Make your process easy to use (custom transformer) Template your web service definition Share it on hub.safe.com
  • 41. Benefits of connecting to Web Services ● Web services enable remote data access, interoperability, and modularity for cost-efficient and scalable global solutions. ● Standardized protocols ensure platform-independent communication; modular services offer easy maintenance, real-time updates, and agile pivoting. ● Integration of diverse web services provides security, innovation, and specialized functionality for powerful, adaptable, feature-rich apps. Real World Examples
  • 42. Popular Web Services in FME Real World Examples + Endless possibilities
  • 43. Demo
  • 45. Sharing Web Connections within your Organization If you have only FME Form: ● Export/Import web service .xml definition in FME Form ● Sharing the FME Form connection storage file and the public key file on a network drive Sharing Web Connections Making Database and Web Connections Public
  • 46. Publish to FME Flow ● Share web connections with other FME Flow users ● Create Deployment Parameters (Requires FME Flow 2023+) Sharing Web Connections You will need to share the connection on FME Flow for others to use it.
  • 47. Sharing Web Connections ● The underlying web service is uploaded with the web connection
  • 48. Sharing Web Connections ● OAuth 2.0 Web Service? ● Don’t forget to configure on FME Flow!
  • 49. Deployment Parameters:Your Best Option Sharing Web Connections very nice!
  • 50. Deployment Parameters Connecting to a New Web Service: What You Need to Know One parameter, many values (depends on connected FME Flow Instance) FME Flow Test Instance FME Flow Production Instance
  • 52. Generic Troubleshooting Tips ● Have you verified the connection is set up correctly? ● If you’re seeing an error message, have you searched the internet for that error? ● Use web monitoring tools ● Have you looked in log files? Testing and Troubleshooting Your Web Service
  • 53. OAuth 2.0 Connection Errors ● OAuth Failed ● Invalid Redirect URI ● Check your web service settings ○ Client id, secret and redirect url must all match values from the oauth app in the web application! Testing and Troubleshooting Your Web Service
  • 54. Testing and Troubleshooting Your Web Service
  • 55. More Errors ● HTTP Errors (i.e., 401, 403, 404) ● Timeouts ○ FME can’t reach the web application URL ● HTTPS or SSL Certificate Errors (FME Flow) ○ May need to import the ssl certificates to establish trust ● Can you get a token outside of FME using a tool like Postman or cURL? Testing and Troubleshooting Your Web Service Troubleshooting ArcGIS Online Web Connections Troubleshooting SharePoint Web Connections
  • 56. Connection Stops Working on FME Flow ● Works for a while, then you start receiving invalid token errors ● Tokens are published with the web service, but they expire ● Confirm your web service is configured correctly on FME Flow ○ Authorize the web connection ● Use different web connections for different FME Flow instances Testing and Troubleshooting Your Web Service
  • 58. Summary ● Web connections let you reuse and share without hard-coding web application credentials ● A web connection has underlying web service configuration ● Web services use tokens to authenticate ● Key web service types: token and OAuth ● FME provides web service templates for dozens of popular web applications ● Define your own web service templates using web application vendor’s documentation Conclusion
  • 60. Resources ● Web Connections and FME ● Making Database and Web Connections Public ● Deployment Parameters ● FME Flow Troubleshooting: Web Connections ● Check out the FME Community for many application-specific web connection articles!
  • 61. Get our Ebook Spatial Data for the Enterprise fme.ly/gzc Guided learning experiences at your fingertips community.safe.com /s/academy FME Academy Webinars Upcoming & on-demand webinars safe.com/webinars
  • 63. We’d love to help you get started. Get in touch with us at info@safe.com Experience the FME Accelerator Contact Us Unlock the power of your data in only 90 minutes Register for free at fme.safe.com/accelerator Next Steps
  • 64. Our largest FME user conference yet. Sept 5-7 | 100+ sessions co-hosted by Safe Software & con terra Next Steps
  • 65. ClaimYour Community Badge ● Get community badges for watching webinars! ● fme.ly/WebinarBadge ● Today’s code: MGFLW Join the Community today! Next Steps
  • 67. ThankYou Recap of Next Steps 1 Join the FME Community 2 Contact us 3 Experience the FME Accelerator Please fill out our webinar survey