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
0
46
MuleSoft Recuperando dados do salesforce
MuleSoft Recuperando dados do salesforce2
Alex teles
August 10, 2016
Tweet
Share
More Decks by Alex teles
See All by Alex teles
Mulesoft configurando conexão com banco AS400 DB2
alexteles10
0
100
Chamando um flow de dentro do Transform Message
alexteles10
0
79
MuleSoft Juntando duas ou mais Listas ordenadas
alexteles10
0
74
MuleSoft Como mockar resultado com transform mensager
alexteles10
0
46
MuleSoft mock com set payload
alexteles10
0
55
Como excluir o conector do facebook Do anyponit
alexteles10
0
71
Baixando conectores que não são nativos
alexteles10
0
61
Editor do Anypoint
alexteles10
0
47
MuleSoft Como fazer um when dentro de um when
alexteles10
0
61
Other Decks in Education
See All in Education
演習:Gitの基本操作 / 04-git-basic
kaityo256
PRO
0
360
次期バージョン 14.5.1 Early Access Program が始まりました
harunakano
1
120
SSH公開鍵認証 / 02-b-ssh
kaityo256
PRO
0
120
Write to Win: Crafting Winning Application Essays
em07adoz
0
140
JAPAN AI CUP Prediction Tutorial
upura
2
920
高校数学とJulia言語
shimizudan
0
140
栃木県警サイバーセキュリティ研修会2026
nomizone
0
360
0203
cbtlibrary
0
140
Gitの中身 / 03-a-git-internals
kaityo256
PRO
0
150
2025-12-19-LT
takesection
0
120
CoderDojoへようこそ ニンジャ&保護者向け (CoderDojo Guidance for Ninjas&Parents)
coderdojokodaira
1
120
160人の中高生にAI・技術体験の講師をしてみた話
shuntatoda
1
410
Featured
See All Featured
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
Scaling GitHub
holman
464
140k
Building the Perfect Custom Keyboard
takai
2
720
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
GraphQLの誤解/rethinking-graphql
sonatard
75
11k
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
360
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.4k
Kristin Tynski - Automating Marketing Tasks With AI
techseoconnect
PRO
0
200
Designing for Performance
lara
611
70k
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