Advertisement
Guest User

Untitled

a guest
May 27th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <flow name="retrieve-sfdc-accounts">
  2. <sfdc:query config-ref="Salesforce__Basic_authentication" query="dsql:SELECT BillingCity,BillingCountry,BillingPostalCode,BillingState,BillingStreet,Name FROM Account" />
  3. <logger message="#[payload]" level="DEBUG" />
  4.  
  5. <choice-exception-strategy>
  6. <catch-exception-strategy when="#[exception.causedBy(com.sforce.soap.partner.fault.ApiFault)">
  7. <!-- Exception strategy implementation -->
  8. </catch-exception-strategy>
  9. <exception-strategy ref="globalExceptionStrategy" /> <!-- This refers to the exception strategy above -->
  10. </choice-exception-strategy>
  11. </flow>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement