SlideShare a Scribd company logo
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 1/10
Using JCA Salesforce Adapter with SOA Suite
Posted on May 25, 2014
Oracle Cloud Adapter for Salesforce.com is certified only with SOA Suite 11.1.1.7. This JCA adapter can be
download from https://edelivery.oracle.com/.
The pre­requisite is to install:
Oracle Cloud Adapter for Salesforce (p17897781_111170_Generic.zip and p17996952_111170_Generic.zip)
Latest Opatch version Where Can I Find the Latest Version of Opatch?
Once, your environment is setup, it is easy to build a BPEL process and use the Oracle Cloud Adapter for
Salesforce. Before bouncing your weblogic server, apply the following steps in order to avoid certificate issue
during runtime:
add public certificate from Salesforce.com in your cacert file of your weblogic server
de­activate host name verifier in weblogic
The BPEL process
Let’s build a simple request/reply BPEL process to create an Account based on name provided from BPEL
process. I have tested the creation from Salesforce Web site and we just need to provide an account name to get
the record created in Salesforce.
The composite.xml looks like this:
Knowledge comes from experience and continuous practical hands-on …
A history record of my professional
thoughts at a moment in time.
Disclaimer: The views expressed on this
blog are my own and do not necessarily
reflect the views of Salesforce.
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 2/10
The BPEL process just invoke the JCA adaptor and call teh synchronous create operation exposed by Salesforce.
Oracel SOA suite provided an easy and understable JCA Adator to connect to Salesforce.com platform. Let’s see
this throught the Cloud’s JCA wizzard:
Oracle Cloud Adapter for Salesforce.com – Wizard – Step1 
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 3/10
Oracle Cloud Adapter for Salesforce.com – Wizard – Step2
Oracle Cloud Adapter for Salesforce.com – Wizard – Step3
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 4/10
Oracle Cloud Adapter for Salesforce.com – Wizzard – Step3­1
Oracle Cloud Adapter for Salesforce.com – Wizard – Step3­2
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 5/10
Oracle Cloud Adapter for Salesforce.com – Wizzard – Step4­1
Oracle Cloud Adapter for Salesforce.com – Wizzard – Step4­2
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 6/10
Oracle Cloud Adapter for Salesforce.com – Wizzard – Step4­3
Oracle Cloud Adapter for Salesforce.com – Wizzard – Step5
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 7/10
Oracle Cloud Adapter for Salesforce.com – Wizzard – Step6
Before testing the Business Process, you need to define in EM console the csfmap and csfkey needed by the JCA
Adaptor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<adapter‐config name="Service_SFDC_CreateAccountPortType" adapter="Salesforce" wsdlLocation
  <connection‐factory location="cloud/CloudAdapter">
    <non‐managed‐connection managedConnectionFactoryClassName="oracle.cloud.connector.salesf
      <property name="targetWSDLURL" value="enterprise.wsdl"/>
      <property name="csfkey" value="MyCSF_SFDC_KEY"/>
      <property name="csfMap" value="SOA"/>
      <property name="applicationVersion" value="30.0"/>
    </non‐managed‐connection>
  </connection‐factory>
  <endpoint‐interaction portType="Service_SFDC_CreateAccountPortType" operation="create"
    <interaction‐spec className="oracle.tip.adapter.cloud.CloudInteractionSpec">
      <property name="targetOperation" value="create"/>
      <property name="operationPath" value=""/>
      <property name="oracle.cloud.rt.sfdcAdapterNamespace" value="http://xmlns.oracle.com/p
      <property name="selectedObjects" value="Account"/>
      <property name="AllOrNoneHeader.allOrNone" value="true"/>
      <property name="oracle.cloud.rt.suppressResponse" value="false"/>
    </interaction‐spec>
  </endpoint‐interaction>
</adapter‐config>
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 8/10
Connect to the EM console, and configure security credentials used by your JCA adaptor
Now, your are ready to test the BPEL process and validate that it is working as expected:
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 9/10
By connecting to Salesforce, we can validate that the account has been created successfull, and check that session
did not increase for each call.
9/22/2016 Using JCA Salesforce Adapter with SOA Suite | Knowledge comes from experience and continuous practical hands­on …
https://chendamok.wordpress.com/2014/05/25/using­jca­salesforce­adapter­with­soa­suite/ 10/10
About Chenda Mok
19 years of hands on experience in software design and development with emphasis on Enterprise Application Integration (EAI),
Services Oriented Architecture (SOA) and Identity Management (IDM) solutions. I’m a software engineer, member of the
professional service delivery team working for Salesforce. Prior to this, I worked for Oracle as Solution Architect, through
SeeBeyond(06/2005), then SUN’s acquisition (04/2009). After my master’s degree in computer science in 1997; I always
delivered consulting on architecture, design, implementation on integration’s field. I’m interested in architecture using
EAI/SOA/IDM/BPM/Cloud technologies, software development and Java’s related technologies. I may blog about my
work/activities at Salesforce, but I do not speak for my employer, past, present or future.
View all posts by Chenda Mok →
Thanks for reading !
Share this:
Twitter Facebook Google
This entry was posted in bpel, SOA Suite and tagged bpel, Oracle Cloud Adapter for Salesforce.com, salesforce, sfdc. Bookmark the permalink.
Knowledge comes from experience and continuous practical hands­on …
  
 Like
Be the first to like this.

Related
SOA/BPEL publishing to a remote JMS
queue using JMSAdapter
Developer's Guide for Oracle SOA Suite Developer's Guide for Oracle SOA Suite 11g
Release 1 (11.1.1)
In "bpel"
In "11.1.1.4.x"
In "11.1.1.4.x"
Blog at WordPress.com.

More Related Content

What's hot (17)

PDF
Developer Insights for Application Upgrade to ColdFusion 2016
ColdFusionConference
 
PDF
Upgrade OBIEE to 11.1.1.7.1
Osama Mustafa
 
PDF
20160308 apex sso
MT AG
 
PDF
How to add storage to esxi 5.5
Osama Mustafa
 
PDF
Laravel website security and performance optimization guide (pro tips to fine...
Katy Slemon
 
DOCX
Obia11.1.1.10.1 installation and configuration on Unix platform
Sheikh Zakirulla
 
PDF
OBIA Installation
Osama Mustafa
 
PDF
J2ee user managment using dwh builder
Osama Mustafa
 
PDF
Is Enterprise Java Still Relevant (JavaOne 2015 session)
Ian Robinson
 
PDF
Oracle ODI & Oracle SOA installation
Osama Mustafa
 
PPTX
Oracle Standard Edition 2 Licence changes
Kay Williams
 
PDF
Webinar: "Continuous Delivery with Jenkins"
Emerasoft, solutions to collaborate
 
PDF
Oracle OpenWorld 13 Highlights for Middleware Admins
Simon Haslam
 
PDF
Integrating Office Web Apps with SharePoint 2013
SharePoint Saturday New Jersey
 
PPT
Obiee installation 31 july
Amit Sharma
 
PDF
WSO2 ESB - The Fastest Open Source ESB with Superior Integration Capabilities
WSO2
 
PPTX
Getting Started with PaaS
CloudBees
 
Developer Insights for Application Upgrade to ColdFusion 2016
ColdFusionConference
 
Upgrade OBIEE to 11.1.1.7.1
Osama Mustafa
 
20160308 apex sso
MT AG
 
How to add storage to esxi 5.5
Osama Mustafa
 
Laravel website security and performance optimization guide (pro tips to fine...
Katy Slemon
 
Obia11.1.1.10.1 installation and configuration on Unix platform
Sheikh Zakirulla
 
OBIA Installation
Osama Mustafa
 
J2ee user managment using dwh builder
Osama Mustafa
 
Is Enterprise Java Still Relevant (JavaOne 2015 session)
Ian Robinson
 
Oracle ODI & Oracle SOA installation
Osama Mustafa
 
Oracle Standard Edition 2 Licence changes
Kay Williams
 
Webinar: "Continuous Delivery with Jenkins"
Emerasoft, solutions to collaborate
 
Oracle OpenWorld 13 Highlights for Middleware Admins
Simon Haslam
 
Integrating Office Web Apps with SharePoint 2013
SharePoint Saturday New Jersey
 
Obiee installation 31 july
Amit Sharma
 
WSO2 ESB - The Fastest Open Source ESB with Superior Integration Capabilities
WSO2
 
Getting Started with PaaS
CloudBees
 

Viewers also liked (18)

PDF
1 Learning About Oracle Service Bus
TUSHAR VARSHNEY
 
PDF
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
TUSHAR VARSHNEY
 
PPT
Introduction of xml and xslt
TUSHAR VARSHNEY
 
PPTX
Introduction to bpel
TUSHAR VARSHNEY
 
PDF
Simplifying SOA_ Choosing Between Route, Service Callout and Publish
TUSHAR VARSHNEY
 
PDF
Oracle 11G Database Adapter as Poller with BPEL process _ My Tech Blog
TUSHAR VARSHNEY
 
PPTX
J developer 11g components ppt
TUSHAR VARSHNEY
 
PPT
Description of soa and SOAP,WSDL & UDDI
TUSHAR VARSHNEY
 
DOCX
Sfdc documentation
TUSHAR VARSHNEY
 
DOCX
Prerequisite to start with sfdc adapter in soa 12 c
TUSHAR VARSHNEY
 
PDF
Installing the Oracle SOA Suite on Red Hat 6
TUSHAR VARSHNEY
 
PPTX
Componenets of osb12c
TUSHAR VARSHNEY
 
PDF
Oracle@cloud adapter(SFDC integration with SOA Suites12c)
TUSHAR VARSHNEY
 
PDF
OSB 12c - Database Polling using DB adapter - Oracle Fusion Middleware Blog
TUSHAR VARSHNEY
 
PDF
Oracle Enterprise Scheduler(ESS Job Scheduling)
TUSHAR VARSHNEY
 
DOCX
Horizontal clustering configuration steps
TUSHAR VARSHNEY
 
PDF
oracle service bus
TUSHAR VARSHNEY
 
PDF
Oracle Service Bus (OSB) for the Busy IT Professonial
Frank Munz
 
1 Learning About Oracle Service Bus
TUSHAR VARSHNEY
 
How to Install JAVA 7 (JDK 7u79) on CentOS_RHEL 7_6_5
TUSHAR VARSHNEY
 
Introduction of xml and xslt
TUSHAR VARSHNEY
 
Introduction to bpel
TUSHAR VARSHNEY
 
Simplifying SOA_ Choosing Between Route, Service Callout and Publish
TUSHAR VARSHNEY
 
Oracle 11G Database Adapter as Poller with BPEL process _ My Tech Blog
TUSHAR VARSHNEY
 
J developer 11g components ppt
TUSHAR VARSHNEY
 
Description of soa and SOAP,WSDL & UDDI
TUSHAR VARSHNEY
 
Sfdc documentation
TUSHAR VARSHNEY
 
Prerequisite to start with sfdc adapter in soa 12 c
TUSHAR VARSHNEY
 
Installing the Oracle SOA Suite on Red Hat 6
TUSHAR VARSHNEY
 
Componenets of osb12c
TUSHAR VARSHNEY
 
Oracle@cloud adapter(SFDC integration with SOA Suites12c)
TUSHAR VARSHNEY
 
OSB 12c - Database Polling using DB adapter - Oracle Fusion Middleware Blog
TUSHAR VARSHNEY
 
Oracle Enterprise Scheduler(ESS Job Scheduling)
TUSHAR VARSHNEY
 
Horizontal clustering configuration steps
TUSHAR VARSHNEY
 
oracle service bus
TUSHAR VARSHNEY
 
Oracle Service Bus (OSB) for the Busy IT Professonial
Frank Munz
 
Ad

Similar to Using jca salesforce adapter with soa suite (20)

PDF
OOW16 - Deploying Oracle E-Business Suite for On-Premises Cloud and Oracle Cl...
vasuballa
 
PDF
C6 deploying applications to your private cloud 7 to 10 times faster
Dr. Wilfred Lin (Ph.D.)
 
PDF
Case Study: How CA’s IT Automated Salesforce Deployments with CA Release Auto...
CA Technologies
 
PPTX
Webinar: Automating the Creation and Use of Virtual Testing Environments
Skytap Cloud
 
PDF
Spring Framework Tutorial | Spring Tutorial For Beginners With Examples | Jav...
Edureka!
 
PDF
Embedding Oracle Weblogic Server 1871199
cwspeaks
 
PPTX
Vmware training presentation
Amit Kapadia
 
PDF
Oracle Solaris 11 lab agenda
Pavel Anni
 
PDF
Aioug2017 deploying-ebs-on-prem-and-on-oracle-cloud v2
pasalapudi
 
PDF
Solving todays problems with oracle integration cloud
Heba Fouad
 
PDF
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and More
Shaun Smith
 
PDF
Con11257 schifano con11257-best practices for deploying highly scalable virtu...
Berry Clemens
 
PDF
HDinsight Workshop - Prerequisite Activity
Idan Tohami
 
PDF
JavaCro'14 - WebLogic-GlassFish-JaaS Strategy and Roadmap – Duško Vukmanović
HUJAK - Hrvatska udruga Java korisnika / Croatian Java User Association
 
PDF
OOW15 - Installation, Cloning, and Configuration of Oracle E-Business Suite 12.2
vasuballa
 
PDF
Reduce Software Release Cycles by 4-5x with Application Release Automation fo...
CA Technologies
 
PDF
WebLogic FAQs
Amit Sharma
 
PPTX
Live Session1 lightning web component
SmritiSharan1
 
PPTX
Skype for Business - Architecture and Design Considerations_FINAL.pptx
jonathanmckinney16
 
PPTX
Cf intro aug_2012_raja
Lucinda Davidson
 
OOW16 - Deploying Oracle E-Business Suite for On-Premises Cloud and Oracle Cl...
vasuballa
 
C6 deploying applications to your private cloud 7 to 10 times faster
Dr. Wilfred Lin (Ph.D.)
 
Case Study: How CA’s IT Automated Salesforce Deployments with CA Release Auto...
CA Technologies
 
Webinar: Automating the Creation and Use of Virtual Testing Environments
Skytap Cloud
 
Spring Framework Tutorial | Spring Tutorial For Beginners With Examples | Jav...
Edureka!
 
Embedding Oracle Weblogic Server 1871199
cwspeaks
 
Vmware training presentation
Amit Kapadia
 
Oracle Solaris 11 lab agenda
Pavel Anni
 
Aioug2017 deploying-ebs-on-prem-and-on-oracle-cloud v2
pasalapudi
 
Solving todays problems with oracle integration cloud
Heba Fouad
 
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and More
Shaun Smith
 
Con11257 schifano con11257-best practices for deploying highly scalable virtu...
Berry Clemens
 
HDinsight Workshop - Prerequisite Activity
Idan Tohami
 
JavaCro'14 - WebLogic-GlassFish-JaaS Strategy and Roadmap – Duško Vukmanović
HUJAK - Hrvatska udruga Java korisnika / Croatian Java User Association
 
OOW15 - Installation, Cloning, and Configuration of Oracle E-Business Suite 12.2
vasuballa
 
Reduce Software Release Cycles by 4-5x with Application Release Automation fo...
CA Technologies
 
WebLogic FAQs
Amit Sharma
 
Live Session1 lightning web component
SmritiSharan1
 
Skype for Business - Architecture and Design Considerations_FINAL.pptx
jonathanmckinney16
 
Cf intro aug_2012_raja
Lucinda Davidson
 
Ad

Recently uploaded (20)

PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
July Patch Tuesday
Ivanti
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
July Patch Tuesday
Ivanti
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 

Using jca salesforce adapter with soa suite