SlideShare a Scribd company logo
Salesforce
Integration
Patterns
Jan. 20th, 2017
0
1
Salesforce Integration Patterns
A variety of integration patterns currently exist for Salesforce. We’ll examine the
following in this presentation.
• Outbound Messaging
• Salesforce Connect (ODATA)
• Canvas
• REST API Integration (inbound/outbound)
• SOAP API Integration (inbound/outbound)
Let’s take a deeper dive into each.
2
Outbound Messaging
Outbound messaging allows you to specify
that changes to data fields within
Salesforce can automatically propagated to
external systems. A backend queue is used
to manage the outbound calls.
Outbound messaging is part of the
workflow rule functionality in Salesforce.
Workflow rules watch for specific kinds of
field changes and trigger automatic
Salesforce actions, such as sending email
alerts, creating task records, or sending an
outbound message.
3
Pros/Cons of Outbound Messaging
• Simple to setup within Salesforce.
• Can be invoked via workflow rules
and Apex.
• Up to 100 notifications can take
place within a single SOAP message.
This makes it very efficient.
• Guaranteed message delivery for up
to 24 hours (retries for that duration).
• Asynchronous so no client latency.
Advantages
• Receiving service must implement
Salesforces’ outbound messaging
WSDL.
• REST is not an option for outbound
messaging.
• Governor/developer limits exist.
Disadvantages
4
Salesforce Connect
Salesforce Connect provides a gateway to accessing external data via the
OData protocol. The external data is exposed in such a way as resemble
custom object.
● Data is accessed in real-time - doesn’t use copying.
● Gives access to external data with point-and-click simplicity.
● Allows the full range of CRUD operations (create, read, update and delete).
5
What Exactly is OData?.
OData is a REST-based protocol for querying and updating data and is built on
standardized technologies such as HTTP, Atom/XML, and JSON. It is different
from other REST-based web services in that it provides a uniform way to
describe both the data and the data model.
6
Pros/Cons of Salesforce Connect
• If your external data already
supports the OData protocol, setup
within Salesforce couldn’t be
simpler.
• External objects are treated nearly
identically to custom objects.
• Configuration can largely be done in
a point-and-click fashion - no
custom code required.
• External objects can be included in
Advantages
• External data integration limits are
applicable. For example, there’s a
maximum of 50,000 records
retrieved or created an hour.
• Debugging tools are weak.
• Performance is a wild card - caching
and optimization strategies are
largely unknown.
• Salesforce charges an additional
monthly fee for Salesforce Connect.
Disadvantages
7
Salesforce Canvas
Canvas is an iFrame-based
technology that allows you to
embed content from an external
system. However, unlike
conventional iFrames, where you
are restricted from fetching data
from domains other than its host
(i.e., the same origin policy),
Canvas provides a Javascript SDK
that allows you to tightly
integrate the canvas app with
Salesforce callouts.
8
Canvas API & Security
Thanks to the Canvas SDK, developers
can surface IFrame applications that
can fully integrate with the parent
Salesforce application. There are
several available security options for
permitting such calls. They include
OAuth support and signed requests, A
signed request contains a consumer
key, access token, and other contextual
information that is useful for building
tightly-integrated applications.
You can also authenticate the user via
SAML if Salesforce is configured as an
identity provider.
99
Pros/Cons of Salesforce Canvas
• Developers can create applications
using the technology stack most
familiar to them.
• Canvas SDK includes CSS classes
that allow an embedded app to have
a seamless UI experience.
• Configuration within Salesforce
couldn’t be easier - just a few simple
steps.
• No additional licenses costs.
Advantages
• The web application that must be
exposed via Canvas must exist.
• In order to fully leverage Canvas, you
will have to use the Canvas SDK,
which effectively means it can’t be
reused in a stand-alone fashion.
• As with nearly every Salesforce
solution - developer limits are in
place. For example, you are limited
to 5,000 Canvas SDK calls per 24
hour period.
Disadvantages
10
Salesforce REST API
REST API provides a powerful,
convenient, and simple Web services
API for interacting with Force.com.
The REST API provides a standard set
of calls for accessing Salesforce
remotely, and new calls can be
defined using Apex REST
annotations.
In addition to calling Salesforce, REST
can also be used for placing
outbound calls. The Batch API is also
suitable for batch routines.
11
Understanding a Salesforce REST API call.
12
Using REST Explorer in Salesforce Workbench
13
Pros/Cons of Salesforce REST API
• Simple to use with nearly all
platform languages & technologies.
• A Javascript API (“Javascript REST
Toolkit”) enables client web
applications to place direct calls to
Salesforce (i.e., no same origin issue).
• Can support XML or JSON protocols.
• Very comprehensive - a wide range
of Salesforce capabilities are
exposed via the protocol.
Advantages
• As always, Salesforce developer
limits apply. For example,
depending upon your license, you
may not be able to place more than
15k calls a day.
• OAuth is required for accessing
standard REST API calls (but those
you define via Apex can be exposed
without OAuth).
• REST not available for outbound
messaging (requires SOAP).
Disadvantages
14
Salesforce SOAP
Salesforce SOAP was their first true integration API, and it still remains popular today.
Salesforce provides two different types of WSDLs that can be used:
● Partner WSDL is loosely typed and generic to Salesforce org instance. You can
dynamically fetch Salesforce configuration data, such as available custom objects.
● Enterprise WSDL. A strongly typed WSDL that is specific to the organization you are
working with.
Given these chooses the big advantage to the Partner WSDL is that it remains static and
thus immune to changes within Salesforce. However, unlike the Enterprise WSDL, it can
be much tedious to work with.
15
Pros/Cons of Salesforce SOAP API
• Platforms such as .NET and Java can
leverage code-generation tools that
make it fairly straightforward for
generating SOAP requests. SDK’s
exist to further streamline the
process for Java, .NET, PHP and
Ruby.
• Testing the SOAP web services can
be done using free tools such as
SoapUI with IDEs such as Eclipse.
Advantages
• As always, Salesforce developer
limits apply. For example,
depending upon your license, you
may not be able to place more than
15k calls a day.
• SOAP isn’t an option for accessing
the Bulk or Chatter APIs - they are
only exposed as REST calls.
Disadvantages
Ad

More Related Content

What's hot (20)

Salesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewSalesforce Integration Pattern Overview
Salesforce Integration Pattern Overview
Dhanik Sahni
 
Salesforce Integration
Salesforce IntegrationSalesforce Integration
Salesforce Integration
Joshua Hoskins
 
From Sandbox To Production: An Introduction to Salesforce Release Management
From Sandbox To Production: An Introduction to Salesforce Release ManagementFrom Sandbox To Production: An Introduction to Salesforce Release Management
From Sandbox To Production: An Introduction to Salesforce Release Management
Salesforce Developers
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
Chetna Purohit
 
Apex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong FoundationsApex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong Foundations
Salesforce Developers
 
DevOps in Salesforce AppCloud
DevOps in Salesforce AppCloudDevOps in Salesforce AppCloud
DevOps in Salesforce AppCloud
rsg00usa
 
Getting Started With Apex REST Services
Getting Started With Apex REST ServicesGetting Started With Apex REST Services
Getting Started With Apex REST Services
Salesforce Developers
 
Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...
Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...
Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...
Giuseppe Cardace
 
Salesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic EventsSalesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic Events
Dhanik Sahni
 
Introduction to Apex for Developers
Introduction to Apex for DevelopersIntroduction to Apex for Developers
Introduction to Apex for Developers
Salesforce Developers
 
Salesforce Development Best Practices
Salesforce Development Best PracticesSalesforce Development Best Practices
Salesforce Development Best Practices
Vivek Chawla
 
Integration using Salesforce Canvas
Integration using Salesforce CanvasIntegration using Salesforce Canvas
Integration using Salesforce Canvas
Dhanik Sahni
 
Introduction to Visualforce
Introduction to VisualforceIntroduction to Visualforce
Introduction to Visualforce
Salesforce Developers
 
Salesforce DevOps: Where Do You Start?
Salesforce DevOps: Where Do You Start?Salesforce DevOps: Where Do You Start?
Salesforce DevOps: Where Do You Start?
Chandler Anderson
 
Salesforce Service Cloud - An overview
Salesforce Service Cloud - An overviewSalesforce Service Cloud - An overview
Salesforce Service Cloud - An overview
Ajay Balakrishnan
 
Webinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerWebinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce Optimizer
Salesforce Admins
 
Best Practices with Apex in 2022.pdf
Best Practices with Apex in 2022.pdfBest Practices with Apex in 2022.pdf
Best Practices with Apex in 2022.pdf
Mohith Shrivastava
 
Salesforce Intro
Salesforce IntroSalesforce Intro
Salesforce Intro
Rich Helton
 
Enterprise Integration - Solution Patterns From the Field
Enterprise Integration - Solution Patterns From the FieldEnterprise Integration - Solution Patterns From the Field
Enterprise Integration - Solution Patterns From the Field
Salesforce Developers
 
Record sharing model in salesforce
Record sharing model in salesforceRecord sharing model in salesforce
Record sharing model in salesforce
Sunil kumar
 
Salesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewSalesforce Integration Pattern Overview
Salesforce Integration Pattern Overview
Dhanik Sahni
 
Salesforce Integration
Salesforce IntegrationSalesforce Integration
Salesforce Integration
Joshua Hoskins
 
From Sandbox To Production: An Introduction to Salesforce Release Management
From Sandbox To Production: An Introduction to Salesforce Release ManagementFrom Sandbox To Production: An Introduction to Salesforce Release Management
From Sandbox To Production: An Introduction to Salesforce Release Management
Salesforce Developers
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
Chetna Purohit
 
Apex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong FoundationsApex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong Foundations
Salesforce Developers
 
DevOps in Salesforce AppCloud
DevOps in Salesforce AppCloudDevOps in Salesforce AppCloud
DevOps in Salesforce AppCloud
rsg00usa
 
Getting Started With Apex REST Services
Getting Started With Apex REST ServicesGetting Started With Apex REST Services
Getting Started With Apex REST Services
Salesforce Developers
 
Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...
Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...
Scalable Salesforce Integrations on a Shoestring Budget - Dreamforce '19 - Gi...
Giuseppe Cardace
 
Salesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic EventsSalesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic Events
Dhanik Sahni
 
Salesforce Development Best Practices
Salesforce Development Best PracticesSalesforce Development Best Practices
Salesforce Development Best Practices
Vivek Chawla
 
Integration using Salesforce Canvas
Integration using Salesforce CanvasIntegration using Salesforce Canvas
Integration using Salesforce Canvas
Dhanik Sahni
 
Salesforce DevOps: Where Do You Start?
Salesforce DevOps: Where Do You Start?Salesforce DevOps: Where Do You Start?
Salesforce DevOps: Where Do You Start?
Chandler Anderson
 
Salesforce Service Cloud - An overview
Salesforce Service Cloud - An overviewSalesforce Service Cloud - An overview
Salesforce Service Cloud - An overview
Ajay Balakrishnan
 
Webinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerWebinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce Optimizer
Salesforce Admins
 
Best Practices with Apex in 2022.pdf
Best Practices with Apex in 2022.pdfBest Practices with Apex in 2022.pdf
Best Practices with Apex in 2022.pdf
Mohith Shrivastava
 
Salesforce Intro
Salesforce IntroSalesforce Intro
Salesforce Intro
Rich Helton
 
Enterprise Integration - Solution Patterns From the Field
Enterprise Integration - Solution Patterns From the FieldEnterprise Integration - Solution Patterns From the Field
Enterprise Integration - Solution Patterns From the Field
Salesforce Developers
 
Record sharing model in salesforce
Record sharing model in salesforceRecord sharing model in salesforce
Record sharing model in salesforce
Sunil kumar
 

Similar to Salesforce Integration Patterns (20)

SFDC Lightning Demo
SFDC Lightning DemoSFDC Lightning Demo
SFDC Lightning Demo
Samar Saha
 
Designing custom REST and SOAP interfaces on Force.com
Designing custom REST and SOAP interfaces on Force.comDesigning custom REST and SOAP interfaces on Force.com
Designing custom REST and SOAP interfaces on Force.com
Steven Herod
 
Designing Custom REST and SOAP Interfaces on Force.com
Designing Custom REST and SOAP Interfaces on Force.comDesigning Custom REST and SOAP Interfaces on Force.com
Designing Custom REST and SOAP Interfaces on Force.com
Salesforce Developers
 
What is Difference Between LC and LWC?
What is Difference Between LC and LWC?What is Difference Between LC and LWC?
What is Difference Between LC and LWC?
Ravendra Singh
 
Business Applications Integration In The Cloud
Business Applications Integration In The CloudBusiness Applications Integration In The Cloud
Business Applications Integration In The Cloud
Anna Brzezińska
 
Detail Guide on Salesforce Integration with Excel.pptx
Detail Guide on Salesforce Integration with Excel.pptxDetail Guide on Salesforce Integration with Excel.pptx
Detail Guide on Salesforce Integration with Excel.pptx
AwsQuality
 
How Open Source Embiggens Salesforce.com
How Open Source Embiggens Salesforce.comHow Open Source Embiggens Salesforce.com
How Open Source Embiggens Salesforce.com
Salesforce Engineering
 
MuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP IntegrationMuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP Integration
Pace Integration
 
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible AppsOur API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
Dreamforce
 
Adobe Flash Platform for the Enterprise
Adobe Flash Platform for the EnterpriseAdobe Flash Platform for the Enterprise
Adobe Flash Platform for the Enterprise
Mike Slinn
 
Sales force
Sales forceSales force
Sales force
Saravanan Manoharan
 
Deep Dive SharePoint 2013: Brave New World: What SharePoint 2013 Really Means...
Deep Dive SharePoint 2013: Brave New World: What SharePoint 2013 Really Means...Deep Dive SharePoint 2013: Brave New World: What SharePoint 2013 Really Means...
Deep Dive SharePoint 2013: Brave New World: What SharePoint 2013 Really Means...
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
A Deep Dive into Salesforce Development Tools and Techniques in the UK.pdf
A Deep Dive into Salesforce Development Tools and Techniques in the UK.pdfA Deep Dive into Salesforce Development Tools and Techniques in the UK.pdf
A Deep Dive into Salesforce Development Tools and Techniques in the UK.pdf
Sweet Potato Tec
 
CI-solutions-Versus-AutoRABIT
CI-solutions-Versus-AutoRABITCI-solutions-Versus-AutoRABIT
CI-solutions-Versus-AutoRABIT
alkhan50
 
#ImpactSalesforceSaturday:360 degree view of salesforce integrations
#ImpactSalesforceSaturday:360 degree view of salesforce integrations#ImpactSalesforceSaturday:360 degree view of salesforce integrations
#ImpactSalesforceSaturday:360 degree view of salesforce integrations
New Delhi Salesforce Developer Group
 
Building the perfect share point farm
Building the perfect share point farmBuilding the perfect share point farm
Building the perfect share point farm
David Broussard
 
What are cloud service models
What are cloud service modelsWhat are cloud service models
What are cloud service models
Livin Jose
 
Serverless Architectures
Serverless Architectures Serverless Architectures
Serverless Architectures
SuraiyaHasan19004210
 
Salesforce interview questions walkthrough
Salesforce interview questions walkthroughSalesforce interview questions walkthrough
Salesforce interview questions walkthrough
Shivam Srivastava
 
Presentation on cloud computing
Presentation on cloud computingPresentation on cloud computing
Presentation on cloud computing
Rahul Mallik
 
SFDC Lightning Demo
SFDC Lightning DemoSFDC Lightning Demo
SFDC Lightning Demo
Samar Saha
 
Designing custom REST and SOAP interfaces on Force.com
Designing custom REST and SOAP interfaces on Force.comDesigning custom REST and SOAP interfaces on Force.com
Designing custom REST and SOAP interfaces on Force.com
Steven Herod
 
Designing Custom REST and SOAP Interfaces on Force.com
Designing Custom REST and SOAP Interfaces on Force.comDesigning Custom REST and SOAP Interfaces on Force.com
Designing Custom REST and SOAP Interfaces on Force.com
Salesforce Developers
 
What is Difference Between LC and LWC?
What is Difference Between LC and LWC?What is Difference Between LC and LWC?
What is Difference Between LC and LWC?
Ravendra Singh
 
Business Applications Integration In The Cloud
Business Applications Integration In The CloudBusiness Applications Integration In The Cloud
Business Applications Integration In The Cloud
Anna Brzezińska
 
Detail Guide on Salesforce Integration with Excel.pptx
Detail Guide on Salesforce Integration with Excel.pptxDetail Guide on Salesforce Integration with Excel.pptx
Detail Guide on Salesforce Integration with Excel.pptx
AwsQuality
 
How Open Source Embiggens Salesforce.com
How Open Source Embiggens Salesforce.comHow Open Source Embiggens Salesforce.com
How Open Source Embiggens Salesforce.com
Salesforce Engineering
 
MuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP IntegrationMuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP Integration
Pace Integration
 
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible AppsOur API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
Dreamforce
 
Adobe Flash Platform for the Enterprise
Adobe Flash Platform for the EnterpriseAdobe Flash Platform for the Enterprise
Adobe Flash Platform for the Enterprise
Mike Slinn
 
A Deep Dive into Salesforce Development Tools and Techniques in the UK.pdf
A Deep Dive into Salesforce Development Tools and Techniques in the UK.pdfA Deep Dive into Salesforce Development Tools and Techniques in the UK.pdf
A Deep Dive into Salesforce Development Tools and Techniques in the UK.pdf
Sweet Potato Tec
 
CI-solutions-Versus-AutoRABIT
CI-solutions-Versus-AutoRABITCI-solutions-Versus-AutoRABIT
CI-solutions-Versus-AutoRABIT
alkhan50
 
#ImpactSalesforceSaturday:360 degree view of salesforce integrations
#ImpactSalesforceSaturday:360 degree view of salesforce integrations#ImpactSalesforceSaturday:360 degree view of salesforce integrations
#ImpactSalesforceSaturday:360 degree view of salesforce integrations
New Delhi Salesforce Developer Group
 
Building the perfect share point farm
Building the perfect share point farmBuilding the perfect share point farm
Building the perfect share point farm
David Broussard
 
What are cloud service models
What are cloud service modelsWhat are cloud service models
What are cloud service models
Livin Jose
 
Salesforce interview questions walkthrough
Salesforce interview questions walkthroughSalesforce interview questions walkthrough
Salesforce interview questions walkthrough
Shivam Srivastava
 
Presentation on cloud computing
Presentation on cloud computingPresentation on cloud computing
Presentation on cloud computing
Rahul Mallik
 
Ad

Recently uploaded (20)

Download YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full ActivatedDownload YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full Activated
saniamalik72555
 
Avast Premium Security Crack FREE Latest Version 2025
Avast Premium Security Crack FREE Latest Version 2025Avast Premium Security Crack FREE Latest Version 2025
Avast Premium Security Crack FREE Latest Version 2025
mu394968
 
Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...
Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...
Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...
Ranjan Baisak
 
Douwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License codeDouwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License code
aneelaramzan63
 
Agentic AI Use Cases using GenAI LLM models
Agentic AI Use Cases using GenAI LLM modelsAgentic AI Use Cases using GenAI LLM models
Agentic AI Use Cases using GenAI LLM models
Manish Chopra
 
Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025
kashifyounis067
 
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
steaveroggers
 
Landscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature ReviewLandscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature Review
Hironori Washizaki
 
Adobe Photoshop CC 2025 Crack Full Serial Key With Latest
Adobe Photoshop CC 2025 Crack Full Serial Key  With LatestAdobe Photoshop CC 2025 Crack Full Serial Key  With Latest
Adobe Photoshop CC 2025 Crack Full Serial Key With Latest
usmanhidray
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
Egor Kaleynik
 
Societal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainabilitySocietal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainability
Jordi Cabot
 
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and CollaborateMeet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Maxim Salnikov
 
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Dele Amefo
 
Mastering OOP: Understanding the Four Core Pillars
Mastering OOP: Understanding the Four Core PillarsMastering OOP: Understanding the Four Core Pillars
Mastering OOP: Understanding the Four Core Pillars
Marcel David
 
Solidworks Crack 2025 latest new + license code
Solidworks Crack 2025 latest new + license codeSolidworks Crack 2025 latest new + license code
Solidworks Crack 2025 latest new + license code
aneelaramzan63
 
Salesforce Aged Complex Org Revitalization Process .pdf
Salesforce Aged Complex Org Revitalization Process .pdfSalesforce Aged Complex Org Revitalization Process .pdf
Salesforce Aged Complex Org Revitalization Process .pdf
SRINIVASARAO PUSULURI
 
Designing AI-Powered APIs on Azure: Best Practices& Considerations
Designing AI-Powered APIs on Azure: Best Practices& ConsiderationsDesigning AI-Powered APIs on Azure: Best Practices& Considerations
Designing AI-Powered APIs on Azure: Best Practices& Considerations
Dinusha Kumarasiri
 
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AIScaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
danshalev
 
Top 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docxTop 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docx
Portli
 
Download YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full ActivatedDownload YouTube By Click 2025 Free Full Activated
Download YouTube By Click 2025 Free Full Activated
saniamalik72555
 
Avast Premium Security Crack FREE Latest Version 2025
Avast Premium Security Crack FREE Latest Version 2025Avast Premium Security Crack FREE Latest Version 2025
Avast Premium Security Crack FREE Latest Version 2025
mu394968
 
Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...
Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...
Proactive Vulnerability Detection in Source Code Using Graph Neural Networks:...
Ranjan Baisak
 
Douwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License codeDouwan Crack 2025 new verson+ License code
Douwan Crack 2025 new verson+ License code
aneelaramzan63
 
Agentic AI Use Cases using GenAI LLM models
Agentic AI Use Cases using GenAI LLM modelsAgentic AI Use Cases using GenAI LLM models
Agentic AI Use Cases using GenAI LLM models
Manish Chopra
 
Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025Adobe Lightroom Classic Crack FREE Latest link 2025
Adobe Lightroom Classic Crack FREE Latest link 2025
kashifyounis067
 
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
How to Batch Export Lotus Notes NSF Emails to Outlook PST Easily?
steaveroggers
 
Landscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature ReviewLandscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature Review
Hironori Washizaki
 
Adobe Photoshop CC 2025 Crack Full Serial Key With Latest
Adobe Photoshop CC 2025 Crack Full Serial Key  With LatestAdobe Photoshop CC 2025 Crack Full Serial Key  With Latest
Adobe Photoshop CC 2025 Crack Full Serial Key With Latest
usmanhidray
 
Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025Adobe After Effects Crack FREE FRESH version 2025
Adobe After Effects Crack FREE FRESH version 2025
kashifyounis067
 
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
How Valletta helped healthcare SaaS to transform QA and compliance to grow wi...
Egor Kaleynik
 
Societal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainabilitySocietal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainability
Jordi Cabot
 
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and CollaborateMeet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Meet the Agents: How AI Is Learning to Think, Plan, and Collaborate
Maxim Salnikov
 
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Salesforce Data Cloud- Hyperscale data platform, built for Salesforce.
Dele Amefo
 
Mastering OOP: Understanding the Four Core Pillars
Mastering OOP: Understanding the Four Core PillarsMastering OOP: Understanding the Four Core Pillars
Mastering OOP: Understanding the Four Core Pillars
Marcel David
 
Solidworks Crack 2025 latest new + license code
Solidworks Crack 2025 latest new + license codeSolidworks Crack 2025 latest new + license code
Solidworks Crack 2025 latest new + license code
aneelaramzan63
 
Salesforce Aged Complex Org Revitalization Process .pdf
Salesforce Aged Complex Org Revitalization Process .pdfSalesforce Aged Complex Org Revitalization Process .pdf
Salesforce Aged Complex Org Revitalization Process .pdf
SRINIVASARAO PUSULURI
 
Designing AI-Powered APIs on Azure: Best Practices& Considerations
Designing AI-Powered APIs on Azure: Best Practices& ConsiderationsDesigning AI-Powered APIs on Azure: Best Practices& Considerations
Designing AI-Powered APIs on Azure: Best Practices& Considerations
Dinusha Kumarasiri
 
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AIScaling GraphRAG:  Efficient Knowledge Retrieval for Enterprise AI
Scaling GraphRAG: Efficient Knowledge Retrieval for Enterprise AI
danshalev
 
Top 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docxTop 10 Client Portal Software Solutions for 2025.docx
Top 10 Client Portal Software Solutions for 2025.docx
Portli
 
Ad

Salesforce Integration Patterns

  • 2. 1 Salesforce Integration Patterns A variety of integration patterns currently exist for Salesforce. We’ll examine the following in this presentation. • Outbound Messaging • Salesforce Connect (ODATA) • Canvas • REST API Integration (inbound/outbound) • SOAP API Integration (inbound/outbound) Let’s take a deeper dive into each.
  • 3. 2 Outbound Messaging Outbound messaging allows you to specify that changes to data fields within Salesforce can automatically propagated to external systems. A backend queue is used to manage the outbound calls. Outbound messaging is part of the workflow rule functionality in Salesforce. Workflow rules watch for specific kinds of field changes and trigger automatic Salesforce actions, such as sending email alerts, creating task records, or sending an outbound message.
  • 4. 3 Pros/Cons of Outbound Messaging • Simple to setup within Salesforce. • Can be invoked via workflow rules and Apex. • Up to 100 notifications can take place within a single SOAP message. This makes it very efficient. • Guaranteed message delivery for up to 24 hours (retries for that duration). • Asynchronous so no client latency. Advantages • Receiving service must implement Salesforces’ outbound messaging WSDL. • REST is not an option for outbound messaging. • Governor/developer limits exist. Disadvantages
  • 5. 4 Salesforce Connect Salesforce Connect provides a gateway to accessing external data via the OData protocol. The external data is exposed in such a way as resemble custom object. ● Data is accessed in real-time - doesn’t use copying. ● Gives access to external data with point-and-click simplicity. ● Allows the full range of CRUD operations (create, read, update and delete).
  • 6. 5 What Exactly is OData?. OData is a REST-based protocol for querying and updating data and is built on standardized technologies such as HTTP, Atom/XML, and JSON. It is different from other REST-based web services in that it provides a uniform way to describe both the data and the data model.
  • 7. 6 Pros/Cons of Salesforce Connect • If your external data already supports the OData protocol, setup within Salesforce couldn’t be simpler. • External objects are treated nearly identically to custom objects. • Configuration can largely be done in a point-and-click fashion - no custom code required. • External objects can be included in Advantages • External data integration limits are applicable. For example, there’s a maximum of 50,000 records retrieved or created an hour. • Debugging tools are weak. • Performance is a wild card - caching and optimization strategies are largely unknown. • Salesforce charges an additional monthly fee for Salesforce Connect. Disadvantages
  • 8. 7 Salesforce Canvas Canvas is an iFrame-based technology that allows you to embed content from an external system. However, unlike conventional iFrames, where you are restricted from fetching data from domains other than its host (i.e., the same origin policy), Canvas provides a Javascript SDK that allows you to tightly integrate the canvas app with Salesforce callouts.
  • 9. 8 Canvas API & Security Thanks to the Canvas SDK, developers can surface IFrame applications that can fully integrate with the parent Salesforce application. There are several available security options for permitting such calls. They include OAuth support and signed requests, A signed request contains a consumer key, access token, and other contextual information that is useful for building tightly-integrated applications. You can also authenticate the user via SAML if Salesforce is configured as an identity provider.
  • 10. 99 Pros/Cons of Salesforce Canvas • Developers can create applications using the technology stack most familiar to them. • Canvas SDK includes CSS classes that allow an embedded app to have a seamless UI experience. • Configuration within Salesforce couldn’t be easier - just a few simple steps. • No additional licenses costs. Advantages • The web application that must be exposed via Canvas must exist. • In order to fully leverage Canvas, you will have to use the Canvas SDK, which effectively means it can’t be reused in a stand-alone fashion. • As with nearly every Salesforce solution - developer limits are in place. For example, you are limited to 5,000 Canvas SDK calls per 24 hour period. Disadvantages
  • 11. 10 Salesforce REST API REST API provides a powerful, convenient, and simple Web services API for interacting with Force.com. The REST API provides a standard set of calls for accessing Salesforce remotely, and new calls can be defined using Apex REST annotations. In addition to calling Salesforce, REST can also be used for placing outbound calls. The Batch API is also suitable for batch routines.
  • 13. 12 Using REST Explorer in Salesforce Workbench
  • 14. 13 Pros/Cons of Salesforce REST API • Simple to use with nearly all platform languages & technologies. • A Javascript API (“Javascript REST Toolkit”) enables client web applications to place direct calls to Salesforce (i.e., no same origin issue). • Can support XML or JSON protocols. • Very comprehensive - a wide range of Salesforce capabilities are exposed via the protocol. Advantages • As always, Salesforce developer limits apply. For example, depending upon your license, you may not be able to place more than 15k calls a day. • OAuth is required for accessing standard REST API calls (but those you define via Apex can be exposed without OAuth). • REST not available for outbound messaging (requires SOAP). Disadvantages
  • 15. 14 Salesforce SOAP Salesforce SOAP was their first true integration API, and it still remains popular today. Salesforce provides two different types of WSDLs that can be used: ● Partner WSDL is loosely typed and generic to Salesforce org instance. You can dynamically fetch Salesforce configuration data, such as available custom objects. ● Enterprise WSDL. A strongly typed WSDL that is specific to the organization you are working with. Given these chooses the big advantage to the Partner WSDL is that it remains static and thus immune to changes within Salesforce. However, unlike the Enterprise WSDL, it can be much tedious to work with.
  • 16. 15 Pros/Cons of Salesforce SOAP API • Platforms such as .NET and Java can leverage code-generation tools that make it fairly straightforward for generating SOAP requests. SDK’s exist to further streamline the process for Java, .NET, PHP and Ruby. • Testing the SOAP web services can be done using free tools such as SoapUI with IDEs such as Eclipse. Advantages • As always, Salesforce developer limits apply. For example, depending upon your license, you may not be able to place more than 15k calls a day. • SOAP isn’t an option for accessing the Bulk or Chatter APIs - they are only exposed as REST calls. Disadvantages