Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
MuleSoft Recuperando dados do salesforce
Search
Alex teles
August 10, 2016
Education
47
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
MuleSoft Recuperando dados do salesforce
MuleSoft Recuperando dados do salesforce2
Alex teles
August 10, 2016
More Decks by Alex teles
See All by Alex teles
Mulesoft configurando conexão com banco AS400 DB2
alexteles10
0
110
Chamando um flow de dentro do Transform Message
alexteles10
0
83
MuleSoft Juntando duas ou mais Listas ordenadas
alexteles10
0
77
MuleSoft Como mockar resultado com transform mensager
alexteles10
0
49
MuleSoft mock com set payload
alexteles10
0
62
Como excluir o conector do facebook Do anyponit
alexteles10
0
77
Baixando conectores que não são nativos
alexteles10
0
64
Editor do Anypoint
alexteles10
0
52
MuleSoft Como fazer um when dentro de um when
alexteles10
0
71
Other Decks in Education
See All in Education
参加制約理論
roadofhope
0
140
Visionary Initiative: Future Intelligence — Laying the foundations for the future of science, intelligence, and society | Science Tokyo
sciencetokyo
PRO
0
150
生成AI時代の情報発信
molmolken
0
140
!コスパよくインターンに受かる方法!
ruribou
1
310
プログラミング言語において文字列を複数行にわたって だらだらと記載するアレ
sapi_kawahara
0
180
AIには考えられないことを考えられる人になるために
iqbocchi
1
200
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)
signer
PRO
1
2.8k
AI時代に、 なぜ英語を勉強するのか
empelt
0
130
Throw Yourself In! - How I've learned English and What I'm Facing
georgeorge
1
190
2026年度春学期 統計学 第8回(オンデマンド配信回) 演習(1)・問題に対する答案の書き方 (2026. 5. 21)
akiraasano
PRO
0
150
Implicit and Cross-Device Interaction - Lecture 10 - Next Generation User Interfaces (4018166FNR)
signer
PRO
2
2.3k
【セーフィー】テクニカルライティング&コミュニケーション実践講座(26新卒エンジニア向け研修資料)
ymzaki_m4
0
270
Featured
See All Featured
KATA
mclloyd
PRO
35
15k
Fashionably flexible responsive web design (full day workshop)
malarkey
408
67k
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
370
Lightning talk: Run Django tests with GitHub Actions
sabderemane
0
220
Keith and Marios Guide to Fast Websites
keithpitt
413
23k
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.9k
BBQ
matthewcrist
89
10k
The untapped power of vector embeddings
frankvandijk
2
1.8k
Building an army of robots
kneath
306
46k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
370
Abbi's Birthday
coloredviolet
3
8.7k
SEO for Brand Visibility & Recognition
aleyda
0
4.6k
Transcript
None
Recuperando dados com conector do salesforce Transform Message
para recuperar os dados Imprimindo no log
Poll SalesForce Transform Message Logger
Como deve ficar
testo do log
<logger message="====Inicio======" level="INFO" doc:name="Logger"/>
None
<poll doc:name="Poll"> <schedulers:cron-scheduler expression="0 0 1 1 *
? 2016"/> <logger message="====Inicio======" level="INFO" doc:name="Logger"/> </poll>
None
<sfdc:query config- ref="Salesforce__Basic_Authentication" query="dsql:select CPF__c , Idade__c , Nome__c
from Informacoes__c" doc:name="Salesforce"/>
None
None
<dw:transform-message doc:name="Transform Message"> <dw:set-payload><![CDATA[%dw 1.0 %input payload
application/java %output application/json --- payload]]></dw:set-payload>
None
None
None
<?xml version="1.0" encoding="UTF-8"?> <mule xmlns:dw="http://www.mulesoft.org/schema/mule/ee/dw" xmlns:schedulers="http://www.mulesoft.org/schema/mule/schedulers" xmlns:sfdc="http://www.mulesoft.org/schema/mule/sfdc" xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd http://www.mulesoft.org/schema/mule/sfdc http://www.mulesoft.org/schema/mule/sfdc/current/mule-sfdc.xsd http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd http://www.mulesoft.org/schema/mule/schedulers http://www.mulesoft.org/schema/mule/schedulers/current/mule- schedulers.xsd http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd"> <sfdc:config name="Salesforce__Basic_Authentication" username="${sales.user}" password="${sales.password}" securityToken="${sales.token}" doc:name="Salesforce: Basic Authentication"/> <flow name="salesforcequeryFlow"> <poll doc:name="Poll"> <schedulers:cron-scheduler expression="0 0 1 1 * ? 2016"/> <logger message="====Inicio======" level="INFO" doc:name="Logger"/> </poll> <sfdc:query config-ref="Salesforce__Basic_Authentication" query="dsql:select CPF__c , Idade__c , Nome__c from Informacoes__c" doc:name="Salesforce"/> <dw:transform-message doc:name="Transform Message"> <dw:set-payload><![CDATA[%dw 1.0 %input payload application/java %output application/json --- payload]]></dw:set-payload> </dw:transform-message> <logger message="#[message.payloadAs(java.lang.String)]" level="INFO" doc:name="Logger"/> </flow> </mule>
Obrigado Fim